Download presentation
Presentation is loading. Please wait.
Published byAlexia Fitzgerald Modified over 8 years ago
1
Excel 2010 Level 3 Copyright © 2015 30 Bird Media LLC
2
Course objectives After you complete this course, you will know how to: Use function to make decisions and to return information from arrays and tables Find and trap errors, control formula options, and use array formulas and functions Perform calculations on dates, manipulate text, and about some statistical and financial functions Import or create a connection to external data, and export Excel worksheets to other formats Perform what-if analyses by using scenarios and the Goal Seek utility, and about some of the tools available in the Analysis Toolpak. Record and run macros, and how to create a simple form. Copyright © 2015 30 Bird Media LLC
3
Chapter 1: Logical and Lookup Functions You will learn: About using functions to make decisions, how to construct IF functions, and how to use SUMIFS to calculate sums based on criteria How to use lookup and reference functions Copyright © 2015 30 Bird Media LLC
4
Module A: Decision-making functions You will learn how to: Use IF to return one value when a condition is true, and another when that condition is false Nest IF functions or use other logical functions to evaluate more complex decision scenarios Use SUMIF and SUMIFS to calculate totals only when one or more conditions are met Copyright © 2015 30 Bird Media LLC
5
The If Function Copyright © 2015 30 Bird Media LLC
6
The If function Syntax: Copyright © 2015 30 Bird Media LLC
7
Using IF to determine sales commissions The condition should look like this: Copyright © 2015 30 Bird Media LLC
8
Using IF to determine sales commissions Copyright © 2015 30 Bird Media LLC
9
Nesting If functions A nested If function: Copyright © 2015 30 Bird Media LLC
10
AND and OR Syntax:Examples: Copyright © 2015 30 Bird Media LLC
11
Using nested functions to make more complex decisions The nested If function: Copyright © 2015 30 Bird Media LLC
12
Using nested functions to make more complex decisions Copyright © 2015 30 Bird Media LLC
13
Building a SUMIF function Copyright © 2015 30 Bird Media LLC
14
Using SUMIFs sum_range is the range criteria_range is the range to test. criteria is the test. Copyright © 2015 30 Bird Media LLC
15
Using SUMIFS to calculate based on a date range Copyright © 2015 30 Bird Media LLC
16
Assessment: Decision-making functions In the IF function, the logical_test argument must evaluate to TRUE or FALSE. True or false? A.True B.False True. The logical_test argument must evaluate TRUE or FALSE in the If function. Copyright © 2015 30 Bird Media LLC
17
Assessment: Decision-making functions You can use another IF function as the value_if_true argument of an IF function, but not as the value_if_false argument. True or false? A.True B.False That’s false. You can use any kind of expression that returns a value for either argument. Copyright © 2015 30 Bird Media LLC
18
Assessment: Decision-making functions Which of the following are differences between SUMIF and SUMIFS? Choose all correct answers. A.SUMIF can take more than one criterion, while SUMIFS takes a single criterion. B.SUMIFS can take more than one criterion, while SUMIF takes a single criterion. C.SUMIFS cannot be used with numeric criteria. D.The sum_range argument comes first in SUMIFS, but last in SUMIF. A and D are correct. It’s true that SUMIF can take more than one criterion, while SUMIFS takes a single criterion, and that The sum_range argument comes first in SUMIFS, but last in SUMIF. Copyright © 2015 30 Bird Media LLC
19
Module B: Lookup and reference functions You will learn how to: Use a lookup function to find an exact match for a value and then return another value Use a lookup function to find an approximate match in a range, and then return another value Use INDEX and MATCH together to look up values based on two variables Copyright © 2015 30 Bird Media LLC
20
Using VLOOKUP lookup_value is the cell to look for in the table_array. table_array is the lookup table. col_index_number is the relative position of the column range_lookup determines whether you use a range or not. Copyright © 2015 30 Bird Media LLC
21
Using VLOOKUP to return the sales total for a rep Copyright © 2015 30 Bird Media LLC
22
Range lookups Tax Table: A ranged lookup Copyright © 2015 30 Bird Media LLC
23
Using a range lookup to determine commissions Copyright © 2015 30 Bird Media LLC
24
The MATCH and INDEX functions lookup_value :the value to find. lookup_array : the table match type: 1 will find the largest value; 0 will find the exact match; -1 will find the smallest value. array: the table. row_num: the relative row column_num: the relative column Copyright © 2015 30 Bird Media LLC
25
Using MATCH and INDEX to return values from a table Copyright © 2015 30 Bird Media LLC
26
Assessment: Lookup and reference functions To use a lookup function, you must sort the values in the first column or row of the lookup table. True or false? A.True B.False That’s false. You need to sort the first row or column only if you want to use a range lookup. Copyright © 2015 30 Bird Media LLC
27
Assessment: Lookup and reference functions Which function would you use to return the relative position of data within an array? A.INDEX B.LOOKUP C.MATCH C. The correct function for this is MATCH. Copyright © 2015 30 Bird Media LLC
28
Assessment: Lookup and reference functions MATCH can perform range-type lookups on an array sorted in ascending or descending order. True or false? A.True B.False True. You just have to specify the correct match_type argument. Copyright © 2015 30 Bird Media LLC
29
Summary: Logical and lookup functions You should now know: About using functions to make decisions, how to use the IF function to return different values, depending on whether a condition is true; how to nest IF functions, or use AND or OR to make more complex decisions; and how to use SUMIF and SUMIFS to calculate sums according to criteria About how lookup function work, how to use VLOOKUP to return a value from a table based on a lookup value, and how to use MATCH and INDEX to find the location of a value in a table and then return that value Copyright © 2015 30 Bird Media LLC
30
Synthesis: Logical and lookup functions Copyright © 2015 30 Bird Media LLC
31
Synthesis: Logical and lookup functions Copyright © 2015 30 Bird Media LLC
32
Chapter 2: Advanced Formulas You will learn: About formulas auditing features, and how to find errors in your formulas How to control formula options How to use array functions to streamline workbooks and save resources Copyright © 2015 30 Bird Media LLC
33
Module A: Auditing and error-trapping You will learn how to: Trace precedent and dependent cells for a formula Find and correct the source of errors in a formulas Evaluate a formula to understand what it does Use IFERROR to display a value if a formula produces an error Copyright © 2015 30 Bird Media LLC
34
Precedents and Dependents Copyright © 2015 30 Bird Media LLC
35
Showing precedent and dependent relationships Copyright © 2015 30 Bird Media LLC
36
Showing precedent and dependent relationships Copyright © 2015 30 Bird Media LLC
37
Tracing and correcting errors Copyright © 2015 30 Bird Media LLC
38
Tracking and correcting a formula error Copyright © 2015 30 Bird Media LLC
39
Error-trapping Untrapped errorTrapped error Copyright © 2015 30 Bird Media LLC
40
Evaluating formulas The Evaluate Formula window: Copyright © 2015 30 Bird Media LLC
41
Using IFERROR Copyright © 2015 30 Bird Media LLC
42
Building an IFERROR function Copyright © 2015 30 Bird Media LLC
43
Assessment: Auditing and error-trapping You can use arrows to trace only one level of precedence and dependence. True or false? A.True B.False False. You can use arrows to trace multiple levels of precedence and dependence Copyright © 2015 30 Bird Media LLC
44
Assessment: Auditing and error-trapping Which of the following are ways to find and fix errors? Choose all that apply. A.Use the Trace Error command. B.Evaluate a formula that produces an error. C.Double-click a cell containing an error. D.Trace precedents for the cell. E.Trace dependents for the cell. A,B, and D are correct. They are all ways you can track errors. Copyright © 2015 30 Bird Media LLC
45
Assessment: Auditing and error-trapping You can use IFERROR to trap logic errors on your worksheets. True or false? A.True B.False That’s false. You can’t use IFERROR to trap logic errors. Copyright © 2015 30 Bird Media LLC
46
Module B: Formula options You will learn: About calculation and iteration, and how to control both How to display formulas Copyright © 2015 30 Bird Media LLC
47
Changing when a workbook recalculates The Calculation Group on the Formulas tab: Copyright © 2015 30 Bird Media LLC
48
Experimenting with formula options Copyright © 2015 30 Bird Media LLC
49
Assessment: Formula options You can recalculate only a single formula in Excel. True or false? A.True B.False False. You can recalculate multiple formulas in Excel. Copyright © 2015 30 Bird Media LLC
50
Assessment: Formula options By default, Excel tries to calculate a circular reference indefinitely. True or false? A.True B.False That’s true. Excel will calculate circular references indefinitely by default. Copyright © 2015 30 Bird Media LLC
51
Module C: Arrays You will learn: About arrays, and the various ways in which Excel uses them How to enter an array formula to perform more than one calculation with a single formula How to enter an array function Copyright © 2015 30 Bird Media LLC
52
About Arrays Copyright © 2015 30 Bird Media LLC
53
Array formulas Copyright © 2015 30 Bird Media LLC
54
Using an array formula to calculate invoice totals Copyright © 2015 30 Bird Media LLC
55
Array functions Copyright © 2015 30 Bird Media LLC
56
Using an array function to calculate a grand total Copyright © 2015 30 Bird Media LLC
57
Assessment: Arrays Array formulas must be entered in more than one cell. True or false? A.True B.False False. Array formulas can be entered in single cells. Copyright © 2015 30 Bird Media LLC
58
Assessment: Arrays Which of the following is the keyboard method for entering an array formula? Choose the one correct answer. A.Ctrl+Enter B.Shift+Enter C.Ctrl+Shift+Enter D.Ctrl+Alt+Enter C is correct. Ctrl+Shift+Enter will enter an array formula. Copyright © 2015 30 Bird Media LLC
59
Summary: Advanced formulas You should now know: About formula auditing features, including how to trace precedents and dependents, how to find errors in your formulas by tracing them and evaluating formulas, and how to trap errors by using IFERROR How to control formula options such as calculation and iteration, and how to display formulas About arrays, and how to use array formulas and functions to perform multiple calculations on multiple ranges using a single formula Copyright © 2015 30 Bird Media LLC
60
Synthesis: Advanced formulas Copyright © 2015 30 Bird Media LLC
61
Chapter 3: Special Functions You will learn: How to use date and time functions How to manipulate text with functions About some of Excel's statistical functions About some of Excel's financial functions Copyright © 2015 30 Bird Media LLC
62
Module A: Date and time functions You will learn: How to manipulate dates to give you information about the year, month, day, or day of the week How to calculate days or workdays between two dates, and how to calculate an end date given a start date and a number of workdays About how Excel handles times Copyright © 2015 30 Bird Media LLC
63
Getting information from a date Copyright © 2015 30 Bird Media LLC
64
Working with and converting dates Copyright © 2015 30 Bird Media LLC
65
Using date calculation functions Copyright © 2015 30 Bird Media LLC
66
Performing calculations using date functions Copyright © 2015 30 Bird Media LLC
67
Time Copyright © 2015 30 Bird Media LLC
68
Performing simple time calculations Copyright © 2015 30 Bird Media LLC
69
Assessment: Date and time functions In Excel, dates begin with January 1, 1900. True or false? A.True B.False True. January 1, 1900 is the first date in Excel. Copyright © 2015 30 Bird Media LLC
70
Assessment: Date and time functions Which of the following functions would you use to return the name of a month for a date? Choose the one correct answer. A.DATE B.MONTH C.TEXT D.EOMONTH C. TEXT returns the name of the month for a date. Copyright © 2015 30 Bird Media LLC
71
Assessment: Date and time functions Which function would you use if you want the number of workdays between two dates in a location where the work week has 6 days? Choose the one correct answer. A.NETWORKDAYS B.NETWORKDAYS.INTL C.WORKDAYS D.WORKDAYS.INTL The answer is B. NETWORKDAYS.INTL will give the number of days. Copyright © 2015 30 Bird Media LLC
72
Assessment: Date and time functions Times are stored as numbers between 0 and 24. True or false? A.True B.False That’s false. Numbers are not stored that way in Excel. Copyright © 2015 30 Bird Media LLC
73
Module B: Text functions You will learn how to: Combine and trim text values using text functions Get information out of a text value by using text functions Copyright © 2015 30 Bird Media LLC
74
Combining and trimming text Copyright © 2015 30 Bird Media LLC
75
Exercise: Combining and trimming text Copyright © 2015 30 Bird Media LLC
76
Extracting text Copyright © 2015 30 Bird Media LLC
77
Getting information about text Copyright © 2015 30 Bird Media LLC
78
Extracting part of a text string Copyright © 2015 30 Bird Media LLC
79
Extracting part of a text string Copyright © 2015 30 Bird Media LLC
80
Assessment: Text functions What would be the result of the function CONCATENATE("My","Name")? Choose the one correct answer. my name My Name myname MyName D is correct. CONCATENATE will yield MyName as a result. Copyright © 2015 30 Bird Media LLC
81
Assessment: Text functions The LEFT, RIGHT, and MID functions all take the same arguments. True or false? A.True B.False That’s false. MID takes different arguments. Copyright © 2015 30 Bird Media LLC
82
Assessment: Text functions The LEN function takes only a single argument, a text string. True or false? True False True. The LEN function takes only a single text string argument. Copyright © 2015 30 Bird Media LLC
83
Module C: Other functions You will learn: How to view a category of functions About statistical functions and how to use MEDIAN and STDEV.P About financial functions and how to use FV Copyright © 2015 30 Bird Media LLC
84
Statistical functions FORECAST: a projected linear trend value. GEOMEAN: the geometric mean. MAX and MIN: the maximum/ minimum values RANK.AVG: the ranking of a value VAR.P: the variance within a population. Copyright © 2015 30 Bird Media LLC
85
Using MEDIAN and STDEV.P Copyright © 2015 30 Bird Media LLC
86
Calculating AVE, MED and STDEV.P Copyright © 2015 30 Bird Media LLC
87
Using FV rate : the interest rate nper : the number of periods pmt : the payment pv : the present value type : options for payment type. Copyright © 2015 30 Bird Media LLC
88
Comparing future value of investments Copyright © 2015 30 Bird Media LLC
89
Assessment: Other functions The MEDIAN function calculates the average of a set of values. True or false? A.True B.False False. Median does not return the average value. Copyright © 2015 30 Bird Media LLC
90
Assessment: Other functions The FV function can be used to calculate future values of both investments and loans. True or false? A.True B.False That’s true. The FV function can give the future value of both investments and loans. Copyright © 2015 30 Bird Media LLC
91
Summary: Special functions You should now know: About how Excel handles dates and times, how to use functions to get information about dates, and how to calculate dates and times How to use functions to combine, trim, or get information from text values About some of Excel's statistical functions, and how to use the MEDIAN and STDEV.P functions About Excel's financial functions, and how to calculate future value of an investment or load using FV Copyright © 2015 30 Bird Media LLC
92
Synthesis: Special functions Copyright © 2015 30 Bird Media LLC
93
Chapter 4: Importing and exporting You will learn: About working with data from other sources in Excel, and the purpose of cube functions How to export Excel workbooks to various formats, and why you would use them Copyright © 2015 30 Bird Media LLC
94
Module A: External data You will learn: How to import data from a text file into Excel How to get external data from a Microsoft Access database How to get stock information as external data About importing XML data Copyright © 2015 30 Bird Media LLC
95
External connections Copyright © 2015 30 Bird Media LLC
96
Importing XML data Copyright © 2015 30 Bird Media LLC
97
Assessment: External data The only text files that can open in Excel are ones that are structured with delimiters. True or false? True False That’s false. Excel can open text files without delimiters also. Copyright © 2015 30 Bird Media LLC
98
Assessment: External data Which of the following are data sources for which you can create external connections? Choose all that apply. A.Microsoft Word B.SQL databases C.Web queries D.Text files E.Microsoft Access B,C,D, and E are all data sources that can have external connection created. Copyright © 2015 30 Bird Media LLC
99
Assessment: External data All data you import into Excel is linked to its source. True or false? A.True B.False False. Not all imported data in Excel is linked to a source. Copyright © 2015 30 Bird Media LLC
100
Module B: Exporting data You will learn: About using Save As to export data in various formats How to save worksheets as text files Copyright © 2015 30 Bird Media LLC
101
Export formats Copyright © 2015 30 Bird Media LLC
102
Assessment: Exporting data Which format should you save to if you want the greatest number of users to be able to see your formatting worksheet, regardless of the programs they have on their computer? Select the one best answer. A.Open Document Spreadsheet B.CSV (Comma delimited) C.PDF D.XML Data C is the best answer. PDFs give the most users a view of your formatted worksheet. Copyright © 2015 30 Bird Media LLC
103
Assessment: Exporting data Which format should you save to if you want users of database programs to be able to easily import the data and structure of your worksheet? Select the one best answer. A.XPS B.CSV (Comma delimited) C.XML B is correct. A CSV file will allow database users to easily access your worksheet. Copyright © 2015 30 Bird Media LLC
104
Summary: Importing and exporting You should now know: About working with data from other sources in Excel, including how to import, structure, and format text files; how to get and manage external data connections; about importing XML data; and about the purpose of cube functions How to export Excel workbooks to various formats, especially text formats such as CSV, and why you would use different export formats Copyright © 2015 30 Bird Media LLC
105
Synthesis: Importing and exporting Copyright © 2015 30 Bird Media LLC
106
Chapter 5: Analysis You will learn: How to perform what-if analysis using scenarios and Goal Seek About the Analysis Toolpak and the tools it provides for analyzing data Copyright © 2015 30 Bird Media LLC
107
Scenarios Copyright © 2015 30 Bird Media LLC
108
Performing what-if analysis on a budget Copyright © 2015 30 Bird Media LLC
109
Using Goal Seek Copyright © 2015 30 Bird Media LLC
110
Using Goal Seek to find an input Copyright © 2015 30 Bird Media LLC
111
Assessment: What-if analysis To add a scenario, you must select the input range before opening the Scenario Manager. True or false? True False False. You do not have to select an input range before opening scenario manager. Copyright © 2015 30 Bird Media LLC
112
Assessment: What-if analysis Which method would you use to figure out how many of an item to order if you have a budget and know the unit cost? Choose the best answer. A.Scenarios B.Goal Seek C.Solver The answer is B. Goal Seek is the method you would use when working with a budget and a known unit cost. Copyright © 2015 30 Bird Media LLC
113
Module B: The Analysis Toolpak You will learn: About the Analysis Toolpak, and how to load its add-in How to use the Analysis Toolpak to calculate the Pearson correlation coefficient for two-variable data How to use the Analysis Toolpak to create a histogram for a set of data Copyright © 2015 30 Bird Media LLC
114
About the Analysis Toolpak Copyright © 2015 30 Bird Media LLC
115
Analyzing correlation between two data sets Copyright © 2015 30 Bird Media LLC
116
Creating a histogram Copyright © 2015 30 Bird Media LLC
117
Assessment: The Analysis Toolpak The Analysis Toolpak is available immediately with a default installation of Excel. True or false? A.True B.False False. The Analysis Toolpak is an Add-In that comes with Excel but needs to be installed. Copyright © 2015 30 Bird Media LLC
118
Assessment: The Analysis Toolpak Which of the following statements is most accurate in regard to correlation? A.Highly correlated data shows a cause-and-effect relationship. B.A correlation coefficient of close to +1 shows a high correlation. C.You can show correlation only for two data sets. B is correct. +1 indicates a high level of correlation. Copyright © 2015 30 Bird Media LLC
119
Assessment: The Analysis Toolpak The Histogram tool will set up your bins for you. True or false? A.True B.False That’s false. You must set up your bins when using the Histogram tool. Copyright © 2015 30 Bird Media LLC
120
Summary: Analysis You should now know: How to perform what-if analysis by using scenarios to save and switch between different sets of input values for a worksheet How to use Goal Seek to solve for an input value when you have a desired outcome for a formula About the Analysis Toolpak and the tools it provides for analyzing data How to calculate correlation for two sets of data, and how to create a histogram to show frequency of grouped data values, or bins Copyright © 2015 30 Bird Media LLC
121
Chapter 6: Macros and forms You will learn: About using macros to automate repetitive tasks, and how to record and run a macro Various ways to run a macro About using forms to gather input from users, and how to create simple forms Copyright © 2015 30 Bird Media LLC
122
Module A: Recording macros You will learn: What a macro is and how to run one How to record a simple formatting macro How to examine and edit code in a recorded macro How to control the recording of relative and absolute references in a macro Copyright © 2015 30 Bird Media LLC
123
About macros Copyright © 2015 30 Bird Media LLC
124
Security concerns Copyright © 2015 30 Bird Media LLC
125
Managing macro security Copyright © 2015 30 Bird Media LLC
126
Running a sales report macro Copyright © 2015 30 Bird Media LLC
127
Recording a macro Copyright © 2015 30 Bird Media LLC
128
Recording a macro to format headings Copyright © 2015 30 Bird Media LLC
129
VBA code Copyright © 2015 30 Bird Media LLC
130
Editing macros Copyright © 2015 30 Bird Media LLC
131
Viewing and modifying a macro’s code Copyright © 2015 30 Bird Media LLC
132
Controlling references in macros To omit cell selection, select a starting cell before recording. Use Relative References in the Data tab's Code group. To revert to recording absolute selections, toggle Use Relative References Use Ctrl, Shift, and the arrow keys to move to the end of a region Use Ctrl+Shift+* to select the current region around the active cell Copyright © 2015 30 Bird Media LLC
133
Assessment: Recording macros A colleague sends you a workbook, and when you open it, you get a macro security warning. What should you do? Choose the one best answer. A.Go ahead and enable the content. B.Close the workbook immediately. C.Open the workbook without enabling the content, and ask the colleague about macro content in the workbook. C is the best answer. Consult your colleagues about their macro content before enabling it. Copyright © 2015 30 Bird Media LLC
134
Assessment: Recording macros Which of the following are ways to run a macro? Choose all correct answers. A.The Macros window B.Shortcut keys C.Buttons or objects All of these are correct answers. Copyright © 2015 30 Bird Media LLC
135
Assessment: Recording macros You must always select the cell where you want to begin before recording a macro. True or false? A.True B.False That’s false. You do not need to select the first cell before recording a macro. Copyright © 2015 30 Bird Media LLC
136
Assessment: Recording macros You can toggle between recording relative and absolute references while recording a macro. True or false? A.True B.False True. You can toggle between reference types as often as you wish while recording a macro. Copyright © 2015 30 Bird Media LLC
137
Assessment: Recording macros Which of the following are locations where you can store VBA code? Choose all correct answers. A.The current workbook B.The global workbook C.The personal macro workbook D.A new workbook A, C, and D are all locations where you can store VBA code. Copyright © 2015 30 Bird Media LLC
138
Module B: Running Macros You will learn how to: Assign macros to buttons on the ribbon or the Quick Access toolbar Assign macros to objects on a worksheet Name macros so that they run when a workbook is opened or closed Copyright © 2015 30 Bird Media LLC
139
Assigning macros to the ribbon or Quick Access Toolbar. Copyright © 2015 30 Bird Media LLC
140
Assigning macros to buttons or objects Copyright © 2015 30 Bird Media LLC
141
Assigning macros to commands, buttons or objects Copyright © 2015 30 Bird Media LLC
142
Assessment: Running macros You have created a macro to format the headings in a weekly report after you import the data. The macro is stored in a template that you use to create each weekly report. Which method of running the macro is best? Choose the best answer. A.An Auto_Open macro B.A button on the Quick Access toolbar C.A command button D.A graphic object on the worksheet The answer is D. A graphic object in the worksheet would be the best way to run the macro. Copyright © 2015 30 Bird Media LLC
143
Assessment: Running macros You have to use the VBA editor to assign a macro to a command button ActiveX control. True or false? A.True B.False True. To assign a macro to an Active X control you have to use the VBA editor. Copyright © 2015 30 Bird Media LLC
144
Assessment: Running macros Which approach would you use to run a macro every time you open Excel? Choose the best answer. A.Store it in the normal template. B.Name it Auto_Open, and store it in a workbook called AutoRun. C.Name it Auto_Open, and store it in your Personal Macro Workbook. D.Add it to the Quick Access toolbar. C is the best way to run that macro. Copyright © 2015 30 Bird Media LLC
145
Module C: Forms You will learn: About userforms and how they work About the various kinds of controls you can add to a userform How to set properties of userforms and controls How to edit VBA code associated with controls on a userform Copyright © 2015 30 Bird Media LLC
146
Creating forms Copyright © 2015 30 Bird Media LLC
147
Inserting controls Copyright © 2015 30 Bird Media LLC
148
Creating a form Copyright © 2015 30 Bird Media LLC
149
Creating a form Copyright © 2015 30 Bird Media LLC
150
Creating a form Copyright © 2015 30 Bird Media LLC
151
Assessment: Forms Which of the following is the most accurate statement about creating forms? Choose the one best answer. A.You can create forms in Excel without using VBA. B.You create forms in the VBA editor, but don't need to use VBA code. C.You create forms in the VBA editor and use VBA code to control how they work. C. You create and control forms using VBA. Copyright © 2015 30 Bird Media LLC
152
Assessment: Forms You change the name of a form by clicking its title bar and typing. True or false? A.True B.False False. That’s not how you change a form’s name. Copyright © 2015 30 Bird Media LLC
153
Assessment: Forms Which property of a TextBox control would you access in your VBA code to obtain the text a user typed into the text box? Choose the one correct answer. A.Value B.(Name) C.Text D.Caption C is correct. Text is the property you would reference. Copyright © 2015 30 Bird Media LLC
154
Summary: Macros and forms You should now know: About using macros to automate repetitive tasks, how to record and run a macro, and how to control the recording of relative and absolute references How to assign a macro to the Quick Access toolbar, to a graphical object, or to a command button, and how to cause a macro to run automatically when a workbook is opened or closed About using forms to gather input from users, how to create simple forms and change their properties, how to add controls and change their properties, and how to use VBA procedures to control the interaction between users, controls, and Excel Copyright © 2015 30 Bird Media LLC
155
Synthesis: Macros and forms Copyright © 2015 30 Bird Media LLC
Similar presentations
© 2025 SlidePlayer.com. Inc.
All rights reserved.