Download the files from you will use these files to finish the following exercises.

Size: px
Start display at page:

Download "Download the files from you will use these files to finish the following exercises."

Transcription

1 Exercise 6 Download the files from you will use these files to finish the following exercises. 1. This exercise will guide you how to create a simple game using VBA, please ensure your security level set to Medium or Low before start this exercise. A) Open a new workbook, enter I have a number between 1-9, please guess in cell A1. Then create a Textbox from the Active X Controls in the Developer tab. B) Create a Command Button from the Active X Controls in the Developer tab Peter Lo

2 C) Right click the command button, and select Properties. D) Change the Caption for the command button to New Game. Peter Lo

3 E) Double click the command button New Game to open the Visual Basic Editor, and then enter the following code. Private Sub CommandButton1_Click() ' Initialize the random-number generator. Randomize End Sub ' Generate random value between 1 and 9. RandomNumber = Int((9 * Rnd()) + 1) F) Select File Close and Return to Microsoft Excel in the Visual Basic Editor. G) Create another Command Button from the Active X Controls in the Developer tab Peter Lo

4 H) Right click the Button, and select Properties. I) Change the Caption to Guess. Peter Lo

5 J) Double click the command button Guess to open the Visual Basic Editor, and then enter the following code. Private Sub CommandButton2_Click() If TextBox1.Text > RandomNumber Then MsgBox ("Too Big!") ElseIf TextBox1.Text < RandomNumber Then MsgBox ("Too Small!") ElseIf TextBox1.Text = RandomNumber Then MsgBox ("Correct!") End If End Sub K) Add the variable declaration statement on the top of the program. Dim RandomNumber As Integer Private Sub CommandButton1_Click() If TextBox1.Text > RandomNumber Then MsgBox ("Too Big!") ElseIf TextBox1.Text < RandomNumber Then MsgBox ("Too Small!") ElseIf TextBox1.Text = RandomNumber Then MsgBox ("Correct!") End If End Sub Peter Lo

6 Private Sub CommandButton2_Click() ' Initialize the random-number generator. Randomize End Sub ' Generate random value between 1 and 9. RandomNumber = Int((9 * Rnd()) + 1) L) Select File Close and Return to Microsoft Excel in the Visual Basic Editor. Peter Lo

7 M) Save the file as Guess Number.xlsm and close it. Pease note that you must select Excel Macro-Enables Workbook (*.xlsm), or you will lose all Macro and VBA content N) Open the file Guess Number.xlsm and press the [New Game] button to start a new game. Now you can input your answer and press [Guess] to check your luck. Peter Lo

8 2. This exercise will test your knowledge learnt in this Advanced Excel course. You are required apply all your skill (such as formula, conditional formatting, data validation, pivot table and charting) to complete this exercise. A) Open the Excel file Question 6-2.xlsx, and apply the following rules: i. Calculate the Duration for each task: End Date Start Date. ii. Create a drop down list for user to select the Priority: High, Medium, and Low. iii. Create a drop down list for the Responsible based on the worksheet Staff. iv. By using VLOOKUP, obtain the Department for each Responsible v. Create a drop down list for the user to select the Status: Open, In Progress, and Closed. B) Fill the data in the column Priority, Responsible and Status, the content in the column Duration and Department should be auto determined. C) By using the conditional formatting, apply the following rules to the worksheet i. Set the row to Green color if the Status is Closed. ii. Set the row to Red color if the Status is not Closed and End Date is overdue. Peter Lo

9 D) Create a Gantt chart for the project schedule as follow: E) Create a Pivot Table and Pivot Chart for the overall summary Peter Lo

BASIC EXCEL SYLLABUS Section 1: Getting Started Section 2: Working with Worksheet Section 3: Administration Section 4: Data Handling & Manipulation

BASIC EXCEL SYLLABUS Section 1: Getting Started Section 2: Working with Worksheet Section 3: Administration Section 4: Data Handling & Manipulation BASIC EXCEL SYLLABUS Section 1: Getting Started Unit 1.1 - Excel Introduction Unit 1.2 - The Excel Interface Unit 1.3 - Basic Navigation and Entering Data Unit 1.4 - Shortcut Keys Section 2: Working with

More information

Workbooks (File) and Worksheet Handling

Workbooks (File) and Worksheet Handling Workbooks (File) and Worksheet Handling Excel Limitation Excel shortcut use and benefits Excel setting and custom list creation Excel Template and File location system Advanced Paste Special Calculation

More information

The Microsoft Excel Course is divided into 4 levels

The Microsoft Excel Course is divided into 4 levels MS Excel is a very powerful tools used by most of the data analyst in the industry. In this course you will learn how to Master Excel and make it perform any kind of data analysis and Visualization. You

More information

Customizing the Excel 2013 program window. Getting started with Excel 2013

Customizing the Excel 2013 program window. Getting started with Excel 2013 Customizing the Excel 2013 program window 1 2 Getting started with Excel 2013 Working with data and Excel tables Creating workbooks Modifying workbooks Modifying worksheets Merging and unmerging cells

More information

6/14/2010. VBA program units: Subroutines and Functions. Functions: Examples: Examples:

6/14/2010. VBA program units: Subroutines and Functions. Functions: Examples: Examples: VBA program units: Subroutines and Functions Subs: a chunk of VBA code that can be executed by running it from Excel, from the VBE, or by being called by another VBA subprogram can be created with the

More information

3. (1.0 point) To quickly switch to the Visual Basic Editor, press on your keyboard. a. Esc + F1 b. Ctrl + F7 c. Alt + F11 d.

3. (1.0 point) To quickly switch to the Visual Basic Editor, press on your keyboard. a. Esc + F1 b. Ctrl + F7 c. Alt + F11 d. Excel Tutorial 12 1. (1.0 point) Excel macros are written in the programming language. a. Perl b. JavaScript c. HTML d. VBA 2. (1.0 point) To edit a VBA macro, you need to use the Visual Basic. a. Manager

More information

Advanced Excel Charts : Tables : Pivots

Advanced Excel Charts : Tables : Pivots Advanced Excel Charts : Tables : Pivots Protecting Your Tables/Cells Protecting your cells/tables is a good idea if multiple people have access to your computer or if you want others to be able to look

More information

TABLE OF CONTENTS. i Excel 2016 Advanced. 1 INTRODUCTION Method Software and other settings Exercise files 2

TABLE OF CONTENTS. i Excel 2016 Advanced. 1 INTRODUCTION Method Software and other settings Exercise files 2 i TABLE OF CONTENTS 1 INTRODUCTION 1 1.1 Method 1 1.2 Software and other settings 2 1.3 Exercise files 2 2 MULTIPLE WORKSHEETS 3 2.1 Working with multiple worksheets 3 Adding a worksheet 4 Deleting a worksheet

More information

Excel Tip: How to create a pivot table that updates automatically

Excel Tip: How to create a pivot table that updates automatically Submitted by Jess on Thu, 01/23/2014-21:38 Microsoft Excel has a powerful reporting tool called the Pivot Table. In a few minutes and in a few mouse clicks, you can build a report of your data. This is

More information

Instructions for creating and modifying queries will be available in the future.

Instructions for creating and modifying queries will be available in the future. This document is intended to get you started quickly with BEx Analyzer 7.0. You will be able to open, run, and save queries; and export your data to Excel. Instructions for creating and modifying queries

More information

Ms Excel Vba Continue Loop Through Columns Range

Ms Excel Vba Continue Loop Through Columns Range Ms Excel Vba Continue Loop Through Columns Range Learn how to make your VBA code dynamic by coding in a way that allows your 5 Different Ways to Find The Last Row or Last Column Using VBA In Microsoft

More information

Unit 9 Spreadsheet development. Create a user form

Unit 9 Spreadsheet development. Create a user form Unit 9 Spreadsheet development Create a user form So far Unit introduction Learning aim A Features and uses Assignment 1 Learning aim B - Design a Spreadsheet Assignment 2 Learning aim C Develop and test

More information

CSE 123 Introduction to Computing

CSE 123 Introduction to Computing CSE 123 Introduction to Computing Lecture 6 Programming with VBA (Projects, forms, modules, variables, flowcharts) SPRING 2012 Assist. Prof. A. Evren Tugtas Starting with the VBA Editor Developer/Code/Visual

More information

How to Reduce Large Excel File Size (Ultimate Guide)

How to Reduce Large Excel File Size (Ultimate Guide) Handling a large file is important as it takes a huge amount of time to transfer. A large file takes too much time to open. Any kind of change in a large file takes a long time to update. So, reducing

More information

Consolidate and Summarizing Data from Multiple Worksheets

Consolidate and Summarizing Data from Multiple Worksheets Consolidate and Summarizing Data from Multiple Worksheets There are a few methods to summarize data from different worksheets in a workbook. You can use the Consolidate command, in the Data Tools group

More information

Microsoft Excel 2007 Macros and VBA

Microsoft Excel 2007 Macros and VBA Microsoft Excel 2007 Macros and VBA With the introduction of Excel 2007 Microsoft made a number of changes to the way macros and VBA are approached. This document outlines these special features of Excel

More information

Excel 2016: Introduction to VBA

Excel 2016: Introduction to VBA Excel 2016: Introduction to VBA In the previous Excel courses, you used Excel to simplify business tasks, including the creation of spreadsheets, graphs, charts, and formulas that were difficult to create

More information

MS Excel VBA Class Goals

MS Excel VBA Class Goals MS Excel VBA 2013 Class Overview: Microsoft excel VBA training course is for those responsible for very large and variable amounts of data, or teams, who want to learn how to program features and functions

More information

Course Title: Intermediate Excel (Version :2013/2016) Duration : 2 days

Course Title: Intermediate Excel (Version :2013/2016) Duration : 2 days Course Title: Intermediate Excel (Version :2013/2016) Duration : 2 days This program is designed for executives who are already familiar with the basics of Microsoft Excel, and who would like to work with

More information

DATA 301 Introduction to Data Analytics Microsoft Excel VBA. Dr. Ramon Lawrence University of British Columbia Okanagan

DATA 301 Introduction to Data Analytics Microsoft Excel VBA. Dr. Ramon Lawrence University of British Columbia Okanagan DATA 301 Introduction to Data Analytics Microsoft Excel VBA Dr. Ramon Lawrence University of British Columbia Okanagan ramon.lawrence@ubc.ca DATA 301: Data Analytics (2) Why Microsoft Excel Visual Basic

More information

Getting the Most from your Microsoft Excel

Getting the Most from your Microsoft Excel Getting the Most from your Microsoft Excel Anne Del Pizzo PATHS, LLC What we will cover What s new in 2007/2010 Conditional formatting Sparklines Pivot Table Slicers Functions Macros Pivot Tables 1 What

More information

MODULE VI: MORE FUNCTIONS

MODULE VI: MORE FUNCTIONS MODULE VI: MORE FUNCTIONS Copyright 2012, National Seminars Training More Functions Using the VLOOKUP and HLOOKUP Functions Lookup functions look up values in a table and return a result based on those

More information

Course Content Excel Advanced Duration: 1 Day Unit Standard

Course Content Excel Advanced Duration: 1 Day Unit Standard Course Content Excel Advanced Duration: 1 Day Unit Standard 258876 Overview Sorting Extra AutoSum functionality Date and Time =NOW() =TODAY() =DATE Other Time & Date Advanced Mathematical and Financial

More information

download instant at

download instant at CHAPTER 1 - LAB SESSION INTRODUCTION TO EXCEL INTRODUCTION: This lab session is designed to introduce you to the statistical aspects of Microsoft Excel. During this session you will learn how to enter

More information

Microsoft Excel. for Finance Majors. Microsoft Excel for Finance Majors

Microsoft Excel. for Finance Majors. Microsoft Excel for Finance Majors Microsoft Excel for Finance Majors 2007 Version: 12/21/2017 Contents Introduction... 3 Working with Tables... 3 Exercise... 10 Pivot Tables... 12 Exercise:... 17 Conditional Formatting... 18 Exercise:...

More information

Microsoft Excel Expert 2010, Objective Domain

Microsoft Excel Expert 2010, Objective Domain Exam Design 77 888 Microsoft Excel Expert 2010, Objective Domain The Basics This is a Technical Specialist exam designed to assess candidates hands on skills using Microsoft Office Excel 2010 at the Expert

More information

Ms Excel Vba Continue Loop Through Worksheets By Name

Ms Excel Vba Continue Loop Through Worksheets By Name Ms Excel Vba Continue Loop Through Worksheets By Name exceltip.com/files-workbook-and-worksheets-in-vba/determine-if- Checks if the Sheet name is matching the Sheet name passed from the main macro. It

More information

The For Next and For Each Loops Explained for VBA & Excel

The For Next and For Each Loops Explained for VBA & Excel The For Next and For Each Loops Explained for VBA & Excel excelcampus.com /vba/for-each-next-loop/ 16 Bottom line: The For Next Loops are some of the most powerful VBA macro coding techniques for automating

More information

Microsoft. Course EXC13E: Microsoft Excel 2013 Expert. Technology : Microsoft Office 2013 Delivery Method : Instructor-led (classroom)

Microsoft. Course EXC13E: Microsoft Excel 2013 Expert. Technology : Microsoft Office 2013 Delivery Method : Instructor-led (classroom) Course EXC13E: Microsoft Excel 2013 Expert Length : 3 Days Technology : Microsoft Office 2013 Delivery Method : Instructor-led (classroom) About this Course Microsoft Excel Expert teaches students how

More information

<excelunusual.com> Easy Zoom -Chart axis Scaling Using VBA - by George Lungu. <www.excelunusual.com> 1. Introduction: Chart naming: by George Lungu

<excelunusual.com> Easy Zoom -Chart axis Scaling Using VBA - by George Lungu. <www.excelunusual.com> 1. Introduction: Chart naming: by George Lungu Easy Zoom -Chart axis Scaling Using VBA - by George Lungu Introduction: - In certain models we need to be able to change the scale of the chart axes function of the result of a simulation - An Excel chart

More information

Nomas Training. Course Outlines

Nomas Training. Course Outlines Nomas Training Course Outlines Nomas Training & Consultancy Ltd www.nomas.co.uk Training Course Outlines * COURSE LEVEL TOPICS An Introductory course for new users of this package. INTRODUCTION Entering

More information

Ms Excel Vba Continue Loop Through Range Of

Ms Excel Vba Continue Loop Through Range Of Ms Excel Vba Continue Loop Through Range Of Rows Learn how to make your VBA code dynamic by coding in a way that allows your 5 Different Ways to Find The Last Row or Last Column Using VBA In Microsoft

More information

Ms Excel Dashboards & VBA

Ms Excel Dashboards & VBA Ms Excel Dashboards & VBA 32 hours, 4 sessions, 8 hours each Day 1 Formatting Conditional Formatting: Beyond Simple Conditional Formats Data Validation: Extended Uses of Data Validation working with Validation

More information

Microsoft Power Tools for Data Analysis #13 Power Pivot Into #1: Relationships Rather Than VLOOKUP Notes from Video:

Microsoft Power Tools for Data Analysis #13 Power Pivot Into #1: Relationships Rather Than VLOOKUP Notes from Video: Microsoft Power Tools for Data Analysis #13 Power Pivot Into #1: Relationships Rather Than VLOOKUP Notes from Video: Table of Contents: 1. What is Power Pivot (Basic Answer)?... 2 1) Power Pivot comes

More information

Corporate essentials

Corporate essentials Microsoft Office Excel 2016, Corporate essentials A comprehensive package for corporates and government organisations Knowledge Capital London transforming perfomance through learning MS OFFICE EXCEL 2016

More information

Excel 2010 Formulas Not Working In Dragging >>>CLICK HERE<<<

Excel 2010 Formulas Not Working In Dragging >>>CLICK HERE<<< Excel 2010 Formulas Not Working In 2003 Dragging This article does not explain how to enter data manually or enter data To quickly fill in several types of data series, you can select cells and drag the

More information

Excel 2016 Advanced. Course Objectives

Excel 2016 Advanced. Course Objectives Excel 2016 Advanced Course Objectives Upon successful completion of this course, you will be able to perform advanced data analysis, collaborate on workbooks with other users, and automate workbook functionality.

More information

CSE 123 Introduction to Computing

CSE 123 Introduction to Computing CSE 123 Introduction to Computing Lecture 11 Programming with Arrays SPRING 2012 Assist. Prof. A. Evren Tugtas Array Variables Review For detailed information on array variables look at the notes of Lecture

More information

Advance Excel Performing calculations on data 1. Naming groups of data 2. Creating formulas to calculate values

Advance Excel Performing calculations on data 1. Naming groups of data 2. Creating formulas to calculate values Advance Excel 2013 Getting started with Excel 2013 1. Identifying the different Excel 2013 programs 2. Identifying new features of Excel 2013 a. If you are upgrading from Excel 2010 b. If you are upgrading

More information

COURSE CONTENT Excel with VBA Training

COURSE CONTENT Excel with VBA Training COURSE CONTENT Excel with VBA Training MS Excel - Advance 1. Excel Quick Overview Use of Excel, its boundaries & features 2. Data Formatting & Custom setting Number, Text, Date, Currency, Custom settings.

More information

Excel. More Skills 11 Insert and Edit Comments. To complete this workbook, you will need the following file: You will save your workbook as: CHAPTER 2

Excel. More Skills 11 Insert and Edit Comments. To complete this workbook, you will need the following file: You will save your workbook as: CHAPTER 2 CHAPTER 2 Excel More Skills 11 Insert and Edit Comments A comment is a note that is attached to a cell, separate from other cell content. Comments can describe how a complex formula works or provide feedback

More information

Contents. Some Basics Simple VBA Procedure (Macro) To Execute The Procedure Recording A Macro About Macro Recorder VBA Objects Reference

Contents. Some Basics Simple VBA Procedure (Macro) To Execute The Procedure Recording A Macro About Macro Recorder VBA Objects Reference Introduction To VBA Contents Some Basics Simple VBA Procedure (Macro) To Execute The Procedure Recording A Macro About Macro Recorder VBA Objects Reference Some Basics Code: You perform actions in VBA

More information

Creating Automated Dashboard Excel 2013 Contents

Creating Automated Dashboard Excel 2013 Contents Creating Automated Dashboard Excel 2013 Contents Summarize Data Using Pivot Table... 2 Constructing Report Summary... 2 Create a PivotTable from worksheet data... 2 Add fields to a PivotTable... 2 Grouping

More information

Office 2016 Excel Basics 21 Video/Class Project #33 Excel Basics 21: Relationships Rather than VLOOKUP for PivotTable Reports (Excel 2016 Data Model)

Office 2016 Excel Basics 21 Video/Class Project #33 Excel Basics 21: Relationships Rather than VLOOKUP for PivotTable Reports (Excel 2016 Data Model) Office 2016 Excel Basics 21 Video/Class Project #33 Excel Basics 21: Relationships Rather than VLOOKUP for PivotTable Reports (Excel 2016 Data Model) Goal in video # 21: Learn about how to use the Relationships

More information

MICROSOFT EXCEL BIS 202. Lesson 1. Prepared By: Amna Alshurooqi Hajar Alshurooqi

MICROSOFT EXCEL BIS 202. Lesson 1. Prepared By: Amna Alshurooqi Hajar Alshurooqi MICROSOFT EXCEL Prepared By: Amna Alshurooqi Hajar Alshurooqi Lesson 1 BIS 202 1. INTRODUCTION Microsoft Excel is a spreadsheet application used to perform financial calculations, statistical analysis,

More information

2013 ADVANCED MANUAL

2013 ADVANCED MANUAL 2013 ADVANCED MANUAL C B C H O U S E 2 4 C A N N I N G S T R E E T E D I N B U R G H E H 3 8 E G 0 1 3 1 2 7 2 2 7 9 0 W W W. I T R A I N S C O T L A N D. C O. U K I N F O @ I T R A I N S C O T L A N D.

More information

Advanced Excel Skills

Advanced Excel Skills 1 Advanced Excel Skills Course Level Advanced Level Target Population Existing, Experienced Users Course Duration 18 training hours Designed By 2 About Mastery is established to build a unique business

More information

Excel Tools Features... 1 Comments... 2 List Comments Formatting... 3 Center Across... 3 Hide Blank Rows... 3 Lists... 3 Sheet Links...

Excel Tools Features... 1 Comments... 2 List Comments Formatting... 3 Center Across... 3 Hide Blank Rows... 3 Lists... 3 Sheet Links... CONTEXTURES EXCEL TOOLS FEATURES LIST PAGE 1 Excel Tools Features The following features are contained in the Excel Tools Add-in. Excel Tools Features... 1 Comments... 2 List Comments... 2 Comments...

More information

ADVANCED EXCEL Course Modules for Advance Excel Training Online (MS Excel 2013 Course):

ADVANCED EXCEL Course Modules for Advance Excel Training Online (MS Excel 2013 Course): Course Modules for Advance Excel Training Online (MS Excel 2013 Course): ADVANCED EXCEL 2013 1 Getting started with Excel 2013 A Identifying the different Excel 2013 programs B Identifying new features

More information

Half day Excel workshops suggested content

Half day Excel workshops suggested content Excel Introduction: (Session 1 of 2) opening a workbook the Excel screen layout, including the Ribbon and the Quick Access Toolbar entering and editing data simple calculations (using +, -, *, /) Undo

More information

Starting Excel application

Starting Excel application MICROSOFT EXCEL 1 2 Microsoft Excel: is a special office program used to apply mathematical operations according to reading a cell automatically, just click on it. It is called electronic tables Starting

More information

Issue & Action Register. Issue & Action Register Guide. Strategic Capital, Infrastructure and Projects

Issue & Action Register. Issue & Action Register Guide. Strategic Capital, Infrastructure and Projects Guide A guide to completing the Strategic Capital, Infrastructure and Projects Prepared by: Andrew Segrott / Strategic Capital, Infrastructure and Projects Version 1.0 17 December 2010 CRICOS Provider

More information

Patricia Andrada Quick Guide Excel 2010 Data Management-July 2011 Page 1

Patricia Andrada Quick Guide Excel 2010 Data Management-July 2011 Page 1 Patricia Andrada Quick Guide Excel 2010 Data Management-July 2011 Page 1 Excel 2010 Data Management AutoFill and Custom Lists AutoFill 1. Select the range that contains the initial value(s) of the series

More information

Microsoft Excel 2016 Level 1

Microsoft Excel 2016 Level 1 Microsoft Excel 2016 Level 1 One Day Course Course Description You have basic computer skills such as using a mouse, navigating through windows, and surfing the Internet. You have also used paper-based

More information

Excel Course Outline

Excel Course Outline 26 Videos Skyrocket your productivity and propel your career. Enrol for our excel course and be a Rockstar at work! Video #1 Getting Started with Excel Excel Structure Navigating in Excel Ribbon and Tabs

More information

The Basics of Excel Part III. Monday, April 17 th 2017 D-Lab University of California, Berkeley

The Basics of Excel Part III. Monday, April 17 th 2017 D-Lab University of California, Berkeley The Basics of Excel Part III Monday, April 17 th 2017 D-Lab University of California, Berkeley 0 Contents Introduction Databases Pivot Tables Modeling 1 Introduction Last class we learned about Types of

More information

Visual basic tutorial problems, developed by Dr. Clement,

Visual basic tutorial problems, developed by Dr. Clement, EXCEL Visual Basic Tutorial Problems (Version January 20, 2009) Dr. Prabhakar Clement Arthur H. Feagin Distinguished Chair Professor Department of Civil Engineering, Auburn University Home page: http://www.eng.auburn.edu/users/clemept/

More information

Agenda. First Example 24/09/2009 INTRODUCTION TO VBA PROGRAMMING. First Example. The world s simplest calculator...

Agenda. First Example 24/09/2009 INTRODUCTION TO VBA PROGRAMMING. First Example. The world s simplest calculator... INTRODUCTION TO VBA PROGRAMMING LESSON2 dario.bonino@polito.it Agenda First Example Simple Calculator First Example The world s simplest calculator... 1 Simple Calculator We want to design and implement

More information

How to Create a For Next Loop in Excel VBA!

How to Create a For Next Loop in Excel VBA! Often when writing VBA code, one may need to repeat the same action or series of actions more than a couple of times. One could, in this case, write each action over and over in one s code or alternatively

More information

Error Vba Code For Vlookup Function In Excel 2010

Error Vba Code For Vlookup Function In Excel 2010 Error Vba Code For Vlookup Function In Excel 2010 Users who use VLOOKUP or HLOOKUP function get N/A Error many times when In case, if there is a need to use these function in a Excel VBA Macro, then. Excel

More information

EXCEL WORKSHOP III INTRODUCTION TO MACROS AND VBA PROGRAMMING

EXCEL WORKSHOP III INTRODUCTION TO MACROS AND VBA PROGRAMMING EXCEL WORKSHOP III INTRODUCTION TO MACROS AND VBA PROGRAMMING TABLE OF CONTENTS 1. What is VBA? 2. Safety First! 1. Disabling and Enabling Macros 3. Getting started 1. Enabling the Developer tab 4. Basic

More information

- EXCEL (BASIC & INTERMEDIATE) - ADVANCED EXCEL - VBA MACROS ,

- EXCEL (BASIC & INTERMEDIATE) - ADVANCED EXCEL - VBA MACROS , Take additional challenges arising in industry! Transform yourself. - EXCEL (BASIC & INTERMEDIATE) - ADVANCED EXCEL - VBA MACROS Enquire today! +91-8802000175, 0124-436-0863 info@websjyoti.com www.exceltraininggurgaon.in

More information

Quick Guide for Excel 2015 Data Management November 2015 Training:

Quick Guide for Excel 2015 Data Management November 2015 Training: http://pfw.edu Quick Guide for Excel 2015 Data Management November 2015 Training: http://pfw.edu/training Excel 2016 Data Management AutoFill and Custom Lists AutoFill 1. Select the range that contains

More information

Microsoft Excel 2010 Level 1

Microsoft Excel 2010 Level 1 Microsoft Excel 2010 Level 1 One Day Course Course Description You have basic computer skills such as using a mouse, navigating through windows, and surfing the Internet. You have also used paper-based

More information

VBA Collections A Group of Similar Objects that Share Common Properties, Methods and

VBA Collections A Group of Similar Objects that Share Common Properties, Methods and VBA AND MACROS VBA is a major division of the stand-alone Visual Basic programming language. It is integrated into Microsoft Office applications. It is the macro language of Microsoft Office Suite. Previously

More information

Computer, Software and Technology Skills

Computer, Software and Technology Skills Computer, Software and Technology s of Proficiency in Banner Use commands and menus to navigate between Banner forms Find, filter and select appropriate person/vendor records to perform look ups Generate

More information

Sébastien Mathier wwwexcel-pratiquecom/en Arrays are "variables" that allow many values to be stored We have already covered this topic in Lesson 3, but now we will go into greater depth Why use arrays?

More information

Read More: Index Function Excel [Examples, Make Dynamic Range, INDEX MATCH]

Read More: Index Function Excel [Examples, Make Dynamic Range, INDEX MATCH] You can utilize the built-in Excel Worksheet functions such as the VLOOKUP Function, the CHOOSE Function and the PMT Function in your VBA code and applications as well. In fact, most of the Excel worksheet

More information

PHLI Instruction (734) Introduction. Lists.

PHLI Instruction (734) Introduction. Lists. INTERMEDIATE EXCEL Introduction Microsoft Excel has many purposes. In addition to being an excellent data manger, Excel provides the means to perform complex analysis and evaluation of data. This brief

More information

Sébastien Mathier wwwexcel-pratiquecom/en Variables : Variables make it possible to store all sorts of information Here's the first example : 'Display the value of the variable in a dialog box 'Declaring

More information

Themes & Templates Applying a theme Customizing a theme Creatingfilefromtemplate Creating yourowncustomize Template Using templates Editing templates

Themes & Templates Applying a theme Customizing a theme Creatingfilefromtemplate Creating yourowncustomize Template Using templates Editing templates Introducing Excel Understanding Workbooks and Worksheets Moving around a Worksheet Introducing the Ribbon Accessing the Ribbon by using your keyboard Using Shortcut Menus Customizing Your Quick Access

More information

Manual Data Validation Excel 2010 List From Another Workbook

Manual Data Validation Excel 2010 List From Another Workbook Manual Data Validation Excel 2010 List From Another Workbook It is quite easy to create a data validation drop down list among worksheets you will learn how to create a drop fown list from another workbook

More information

VBA MACROS ,

VBA MACROS , Take additional challenges arising in industry! Transform yourself. VBA MACROS Enquire today! +91-8802000175, 0124-436-0863 info@websjyoti.com www.exceltraininggurgaon.in ABOUT THE TRAINER Hirdesh Bhardwaj

More information

DOWNLOAD PDF EXCEL MACRO TO PRINT WORKSHEET TO

DOWNLOAD PDF EXCEL MACRO TO PRINT WORKSHEET TO Chapter 1 : All about printing sheets, workbook, charts etc. from Excel VBA - blog.quintoapp.com Hello Friends, Hope you are doing well!! Thought of sharing a small VBA code to help you writing a code

More information

Public Function randomdouble(lowerbound As Double, upperbound As Double) As Double On Error Resume Next

Public Function randomdouble(lowerbound As Double, upperbound As Double) As Double On Error Resume Next Table of Contents Introduction...1 Using VBA Functions...1 Accessing Visual Basic in Excel...2 Some Example Functions...3 Random Numbers...4 RandomDouble...4 randomint...4 Using the random numbers...5

More information

Saving a Workbook That Contains Macros

Saving a Workbook That Contains Macros Procedures LESSON 64: RECDING A MACRO Adding the DEVELOPER Tab to the Ribbon box, click Customize Ribbon. 4. In the Customize the Ribbon list at the right, click to mark Developer. Setting the Macro Security

More information

Microsoft Excel Office 2016/2013/2010/2007 Tips and Tricks

Microsoft Excel Office 2016/2013/2010/2007 Tips and Tricks Microsoft Excel Office 2016/2013/2010/2007 Tips and Tricks In Office 2007, the OFFICE BUTTON is the symbol at the top left of the screen. 1 Enter Fractions That Will Display And Calculate Properly a. Type

More information

KEYWORDS DDE GETOBJECT PATHNAME CLASS VB EDITOR WITHEVENTS HMI 1.0 TYPE LIBRARY HMI.TAG

KEYWORDS DDE GETOBJECT PATHNAME CLASS VB EDITOR WITHEVENTS HMI 1.0 TYPE LIBRARY HMI.TAG Document Number: IX_APP00113 File Name: SpreadsheetLinking.doc Date: January 22, 2003 Product: InteractX Designer Application Note Associated Project: GetObjectDemo KEYWORDS DDE GETOBJECT PATHNAME CLASS

More information

Excel Expert 2016: Interpreting Data for Insights Exam

Excel Expert 2016: Interpreting Data for Insights Exam Microsoft Office Specialist Excel Expert 2016: Interpreting Data for Insights Exam 77-728 Expert-level candidates for the Microsoft Excel 2016 exam have an advanced understanding of the Excel environment,

More information

Excel Programming with VBA (Macro Programming) 24 hours Getting Started

Excel Programming with VBA (Macro Programming) 24 hours Getting Started Excel Programming with VBA (Macro Programming) 24 hours Getting Started Introducing Visual Basic for Applications Displaying the Developer Tab in the Ribbon Recording a Macro Saving a Macro-Enabled Workbook

More information

More Skills 12 Create Web Queries and Clear Hyperlinks

More Skills 12 Create Web Queries and Clear Hyperlinks CHAPTER 9 Excel More Skills 12 Create Web Queries and Clear Hyperlinks Web queries are requests that are sent to web pages to retrieve and display data in Excel workbooks. Web queries work best when retrieving

More information

To complete this workbook, you will need the following file:

To complete this workbook, you will need the following file: CHAPTER 4 Excel More Skills 13 Create PivotTable Reports A PivotTable report is an interactive, cross-tabulated Excel report used to summarize and analyze data. PivotTable reports are used to ask questions

More information

COURSE OUTLINE MS Excel 2013 Level 3 Last Updated: 5 August 2016

COURSE OUTLINE MS Excel 2013 Level 3 Last Updated: 5 August 2016 Last Updated: 5 August 2016 1. Table of Contents 1. Table of Contents... 2 A. COURSE OUTLINES... 3 1. Free online pre-training assessments... 3 2.... 3 B. CONTACT DETAILS... 7 1. Location for training...

More information

Commonwealth Computer Training Featured Workshop: WORD 2010 DOCUMENT MANAGEMENT

Commonwealth Computer Training Featured Workshop: WORD 2010 DOCUMENT MANAGEMENT Featured Workshop: WORD 2010 DOCUMENT MANAGEMENT Take control of your Microsoft Word documents! This is a hands-on instructor-led training class, covering topics that will enhance the layout, ease-of-use,

More information

Microsoft Office Excel 2013

Microsoft Office Excel 2013 Microsoft Office Excel 2013 PivotTables and PivotCharts University Information Technology Services Training, Outreach, Learning Technologies and Video Production Copyright 2014 KSU Department of University

More information

Extracting the last word of a string Extracting all but the first word of a string Extracting first names, middle names, and last names Counting the

Extracting the last word of a string Extracting all but the first word of a string Extracting first names, middle names, and last names Counting the Introducing Excel Understanding Workbooks and Worksheets Moving around a Worksheet Introducing the Ribbon Accessing the Ribbon by using your keyboard Using Shortcut Menus Customizing Your Quick Access

More information

For comprehensive certification training, students should complete Excel 2007: Basic, Intermediate, and Advanced. Course Introduction

For comprehensive certification training, students should complete Excel 2007: Basic, Intermediate, and Advanced. Course Introduction Microsoft Office Excel 2007: Intermediate Course Length: 1 Day Course Overview This course builds on the skills and concepts taught in Excel 2007: Basic. Students will learn how to use multiple worksheets

More information

Excel Macro Runtime Error Code 1004 Saveas Of Object _workbook Failed

Excel Macro Runtime Error Code 1004 Saveas Of Object _workbook Failed Excel Macro Runtime Error Code 1004 Saveas Of Object _workbook Failed The code that follows has been courtesy of this forum and the extensive help i received from everyone. But after an Runtime Error '1004'

More information

Chart For Dummies Excel 2010 Title Link To Cell Value Into

Chart For Dummies Excel 2010 Title Link To Cell Value Into Chart For Dummies Excel 2010 Title Link To Cell Value Into link text to an Excel cell. In need to update them monthly from an Excel sheet. Link to a specific PowerPoint 2003, 2007 or 2010 slide from Microsoft

More information

Microsoft Office Excel 2010: Intermediate. Course Overview. Course Length: 1 Day. Course Overview

Microsoft Office Excel 2010: Intermediate. Course Overview. Course Length: 1 Day. Course Overview Microsoft Office Excel 2010: Intermediate Course Length: 1 Day Course Overview This course builds on the skills and concepts taught in Excel 2010: Basic, First Look Edition. Students will learn how to

More information

Microsoft Excel 2010 Level 1

Microsoft Excel 2010 Level 1 Microsoft Excel 2010 Level 1 Length: 1 Day Technology: MS Excel 2010 Delivery Method: Instructor-led (classroom) About this Course This one-day instructor-led course provides students with an overview

More information

Preface SECTION 1 LEARN AND UNDERSTAND 1. Chapter 1. Evolution of ICT and digitalization in the information society 3

Preface SECTION 1 LEARN AND UNDERSTAND 1. Chapter 1. Evolution of ICT and digitalization in the information society 3 Table of contents Preface XI SECTION 1 LEARN AND UNDERSTAND 1 Chapter 1. Evolution of ICT and digitalization in the information society 3 1.1 Information and Communication Technology (ICT) 3 1.2 From digitalization

More information

Microfocus VBA Add-On for Rumba+ Desktop. Quick Start Guide

Microfocus VBA Add-On for Rumba+ Desktop. Quick Start Guide Microfocus VBA Add-On for Rumba+ Desktop Quick Start Guide Micro Focus The Lawn 22-30 Old Bath Road Newbury, Berkshire RG14 1QN UK http://www.microfocus.com Copyright Micro Focus 1984-2018. All rights

More information

Microsoft Excel 2013 Table of content

Microsoft Excel 2013 Table of content Microsoft Excel 2013 Table of content Chapter 1. New features in Excel 2013 New Excel Templates New Flash Fill New Pivot Table, Timeline, Slicer and etc New Quick Analysis Chapter 2. Start Working with

More information

6. This is too selective. Amend the filter criteria to also include anyone born before How many staff are now selected?

6. This is too selective. Amend the filter criteria to also include anyone born before How many staff are now selected? 6. This is too selective. Amend the filter criteria to also include anyone born before 1964. How many staff are now selected? 7. Print the list, including the selection criteria. 8. Save the workbook as

More information

Ms excel. The Microsoft Office Button. The Quick Access Toolbar

Ms excel. The Microsoft Office Button. The Quick Access Toolbar Ms excel MS Excel is electronic spreadsheet software. In This software we can do any type of Calculation & inserting any table, data and making chart and graphs etc. the File of excel is called workbook.

More information

CERTIFICATE IN BIG DATA TECHNIQUES ON SMALL DATA FORMAT UTILIZING MICROSOFT EXCEL

CERTIFICATE IN BIG DATA TECHNIQUES ON SMALL DATA FORMAT UTILIZING MICROSOFT EXCEL CERTIFICATE IN BIG DATA TECHNIQUES ON SMALL DATA FORMAT UTILIZING MICROSOFT EXCEL Conducted by: Palani Murugappan Contact Palani / Aaron : http://www.malaysia-training.com Certificate from the United Kingdom

More information

VBA Excel 2013/2016. VBA Visual Basic for Applications. Learner Guide

VBA Excel 2013/2016. VBA Visual Basic for Applications. Learner Guide VBA Visual Basic for Applications Learner Guide 1 Table of Contents SECTION 1 WORKING WITH MACROS...5 WORKING WITH MACROS...6 About Excel macros...6 Opening Excel (using Windows 7 or 10)...6 Recognizing

More information

Spreadsheet Structure

Spreadsheet Structure Exercise The intersection of columns and rows in a spreadsheet creates cells. Each cell on a spreadsheet has a name or address. It is named according to its location, the name of the column first followed

More information

This chapter is intended to take you through the basic steps of using the Visual Basic

This chapter is intended to take you through the basic steps of using the Visual Basic CHAPTER 1 The Basics This chapter is intended to take you through the basic steps of using the Visual Basic Editor window and writing a simple piece of VBA code. It will show you how to use the Visual

More information