Deck 14: Visual Basic for Applications

Full screen (f)
exit full mode
Question
________ are visual controls that allow you to quickly and easily filter your data in an interactive way.

A)Events
B)Form controls
C)Objects
D)Slicers
Use Space or
up arrow
down arrow
to flip the card.
Question
Creating a lookup table and using the ________ function is a common approach to linking values to various form controls.

A)IF
B)SUBTOTAL
C)VLOOKUP
D)HLOOKUP
Question
Microsoft Excel objects have ________,which are actions performed within Excel.

A)monitors
B)options
C)methods
D)references
Question
Within the Visual Basic Editor,the ________ window reveals a list of all the properties of a selected object,like size and color.

A)Information
B)Explorer
C)Code
D)Properties
Question
All of the following statements are TRUE regarding Visual Basic for Applications EXCEPT:

A)VBA allows a user to implement a wide variety of enhancements to many Microsoft Office applications.
B)VBA is considered a very basic form of C++ programming.
C)VBA provides additional tools that can enhance functionality and usability of an Excel application.
D)VBA manipulates objects by using the methods and properties associated with them.
Question
When writing code,and several objects are being referenced at one time,it is necessary to put periods in between each object,called ________.

A)parameters
B)separators
C)indicators
D)regulators
Question
Microsoft Office has a tool built into it that is used to create and edit within Visual Basic.Which selection below is that tool?

A)Visual Basic Conveyor
B)Visual Basic Illustrator
C)Visual Basic Editor
D)Visual Basic Player
Question
A type of variable that refers to one of the pieces of data provided in a method is called a(n)________.

A)parameter
B)module
C)object
D)method
Question
Which type of model below BEST describes a hierarchical collection of items that can be manipulated when using Visual Basic?

A)Organizational
B)Subject
C)Object
D)Program
Question
All of the following statements are TRUE about business intelligence EXCEPT:

A)Business intelligence is a variety of software applications that are used to analyze an organization's data.
B)The role of BI has increased over the last decade because the amount of data being collected by businesses continues to grow at a rapid rate.
C)The most recent trend, which appears that it will be short-lived, is the desire for digital dashboards.
D)Dashboards provide management with a "big picture" view of the business, usually from multiple perspectives using various charts and other graphical representations.
Question
________ are defined as attributes of an object that can be manipulated using Visual Basic.

A)Indicators
B)Properties
C)Modules
D)Collections
Question
A(n)________ consists of a hierarchical collection of objects,consisting of properties,methods,and events that can be manipulated using VBA.

A)method
B)collection
C)source
D)object model
Question
Within the Visual Basic Editor,the Project ________ window houses a hierarchical listing of all object in a workbook,which includes macros and other modules.

A)Properties
B)Explorer
C)Code
D)Information
Question
A ________ has a very similar function as the spin button,however,the value of the linked cell is increased or decreased by sliding it to the left or right.

A)scroll bar
B)spin button
C)menu
D)labels
Question
________ are objects that can be placed into an Excel worksheet,providing the functionality to interact with your models.

A)Form controls
B)Events
C)Loops
D)Objects
Question
Dynamic ________ offer additional clarity in PivotCharts by displaying the year and/or month that is being displayed when filtered.

A)scroll bars
B)spin buttons
C)menus
D)labels
Question
Objects grouped together are called object ________,which can also be referred to as objects.

A)collections
B)methods
C)parameters
D)sources
Question
In Visual Basic Editor,the ________ window is where all the Visual Basic language is typed,and where macro data can be viewed.

A)Code
B)Properties
C)Macro
D)Graphic
Question
A ________ is a form control that is linked to a specific cell.

A)scroll bar
B)radio button
C)menu
D)list
Question
To refer to a particular object using VBA,the objects need to be referred to in their hierarchical structure.For example,to refer to cell A1 in a specific worksheet,the code would be ________.

A)Application.Workbook (workbookname.xlsx).Sheets("Sheet1").Range("A1")
B)Application.Workbook (workbookname.xlsx).Worksheet("Sheet1").Range("A1")
C)Application.Worksheet("Sheet1").Range("A1")
D)Application.Workbook (workbookname.xlsx).Worksheet(Range("A1"))
Question
All of the following statements are TRUE regarding loops in VBA EXCEPT:

A)Loops are used to execute a series of statements multiple times.
B)In the syntax of the Do loop, the data type of the element and group must be the same.
C)The number of times the code is executed can be determined by a specified number, until a condition is true or false, or the code can continue to execute however many objects there are in a collection.
D)There are essentially two categories of loops: Do loops and For...Next loops.
Question
With the VBA ________ control structure there is virtually no limit to the commands and logic that can be applied.

A)If-Then
B)If-Then-Else
C)If-Then-Again
D)If-Then-End
Question
Visual Basic can store values in a ________,which is the space in a computer's memory that is given a name and is used to store values.

A)warehouse
B)variable
C)data port
D)hard drive
Question
________ is an interactive data visualization,exploration,and presentation experience that encourages the creation of beautiful ad-hoc reports.

A)PivotTable
B)PowerPivot
C)Power View
D)PivotChart
Question
The ________ loops until a specified number of loops have been completed.

A)Do…While loop
B)Do…Until loop
C)For loop
D)For…Each loop
Question
Protecting the VBA code with ________ ensures that no unauthorized person will access the code.

A)a password
B)encryption
C)form control
D)method
Question
All of the following are ways to make VBA code easy to read EXCEPT ________.

A)Comments
B)Line breaks
C)Paragraphs
D)Indentations
Question
A ________ error occurs when the code is executed,displaying a description of the error.

A)data port
B)debugging
C)run-time
D)hard drive
Question
A(n)________ is an effective way of using VBA code to increase the interactivity of a dashboard by prompting the user for information and storing that information in a variable to be used later.

A)input box
B)spinner
C)list
D)scroll bar
Question
A(n)________ at the workbook level would be when a user opens or closes a workbook.

A)procedure
B)variable
C)event
D)object
Question
The ________ loops through an object collection or an array.

A)Do…While loop
B)Do…Until loop
C)For loop
D)For…Each loop
Question
All of the following statements are TRUE about improving the readability of VBA EXCEPT:

A)An important aspect of writing VBA is making sure the code is easy to read so that you and others can interpret what is happening.
B)You need to take extra steps to keep the code legible and to document what steps you are taking and why.
C)Commenting code in VBA is an excellent way of explaining the purpose and the intention of a procedure.
D)Lengthy statements become difficult to read, because without pressing Tab, the lines of code will extend continuously to the left.
Question
Power Views are mechanisms that deliver business intelligence in graphical form.
Question
________ are used to execute a series of statements multiple times.

A)Data ports
B)Variables
C)Elements
D)Loops
Question
A container for code is called a ________.

A)Sub procedure
B)module
C)function procedure
D)Properties window
Question
A ________ performs an action on your project or workbook,such as renaming a worksheet or clearing filtered values from PivotTables.

A)Sub procedure
B)module
C)function procedure
D)Properties window
Question
There are two primary types of procedures which are supported by Visual Basic: a Sub procedure and a ________ procedure.

A)Virtual
B)Prime
C)Function
D)Base
Question
All of the following statements are TRUE about VBA procedures EXCEPT:

A)Function procedures are often used to create custom functions that can be entered in worksheet cells.
B)You can have zero or hundreds of Sub procedures and functions written within a single module.
C)If a Sub procedure is to run when a workbook opens or a worksheet becomes active, then it is typically stored in the workbook or worksheet object to take advantage of the Procedure menu at the top of the Code window.
D)Three primary types of procedures are supported by VBA.
Question
The ________ allows you to check and fix VBA code errors.

A)parameter
B)debugger
C)message box
D)properties box
Question
All of the following statements are TRUE about protecting VBA code EXCEPT:

A)It is considered best practice to export any VBA modules as text files before protecting them with a password.
B)Before a worksheet is protected, ensure that cells that need to be allowed to be changed to use the dashboard are not locked.
C)Some managers may need to access the raw data in a workbook and should know VBA to be able to unhide those worksheets.
D)Protecting worksheets from intentional or unintentional modification can be done by hiding the worksheets in the Excel workbook.
Question
The Properties window contains a list of all the properties of a selected object such as name,size,and color.
Question
A Sub procedure performs an action on your project or workbook,such as renaming a worksheet or clearing filtered values from PivotTables.
Question
Methods are attributes of an object that can be referred to or manipulated using VBA.
Question
Slicers are visual controls that allow you to quickly and easily filter your data in an interactive way.
Question
A particular object can be referenced inside a collection by referring to the object collection and then the name or number that represents that specific member of that collection.
Question
An object model consists of a hierarchical collection of objects,consisting of properties,methods,and events that can be manipulated using VBA.
Question
A parameter is a special kind of variable used to refer to one of the pieces of data provided in a method.
Question
The Code window contains a hierarchical list of all the objects in open workbooks,including macros,modules,and worksheets.
Question
A message box is a form control that is linked to a specific cell.
Question
The Project Explorer window is where all the VBA code is typed and also where VBA generated by a recorded macro can be viewed and edited.
Question
The two primary types of procedures that are supported by VBA are Sub procedures and module procedures.
Question
Creating a lookup table and using the HLOOKUP function is a common approach to linking values to various form controls.
Question
Object-oriented programming uses a hierarchy of objects,also called classes,as the focus of the programming.
Question
Labels are critical to dashboard design and can add clarity to the graphics being displayed.
Question
Dashboards provide management with a "Big picture" view of the business,usually from multiple perspectives using various charts and other graphical representations.
Question
A function procedure is a group of VBA statements that perform a calculation and return a single value.
Question
It is best to group your Sub procedures together by what they do into separate modules,renaming the module appropriately to describe the kind of procedures it contains.
Question
With a scroll bar,the value of the linked cell is increased or decreased by sliding the scroll bar to the left or right.
Question
Dashboards are objects that can be placed into an Excel worksheet,providing the functionality to interact with your models.
Question
Visual Basic for Applications is a powerful programming language that is part of all Microsoft Office applications.
Question
A(n)________ performs an action on your project or workbook,such as renaming a worksheet or clearing filtered values from PivotTables.
Question
You need to take extra steps to keep the code legible and to document what steps you are taking and why.
Question
An easy way to gain a better understanding of how VBA works is to use the VBA Recorder to generate VBA code for actions you want to complete.
Question
________ programming uses a hierarchy of objects,also called classes,as the focus of the programming.
Question
________ are visual controls that allow you to quickly and easily filter your data in an interactive way.
Question
A(n)________ is a form control that is linked to a specific cell.
Question
Creating a lookup table and using the ________ function is a common approach to linking values to various form controls.
Question
To create a function procedure you must first declare it is a function,and then provide the function with a name and an opening parenthesis.
Question
A particular object can be referenced inside a collection by referring to the ________ collection and then the name or number that represents that specific member of that collection.
Question
A(n)________ is a group of VBA statements that perform a calculation and return a single value.
Question
An object model consists of a(n)________ collection of objects,consisting of properties,methods,and events that can be manipulated using VBA.
Question
A run-time error occurs when the code is executed,displaying a description of the error.
Question
When using the debugger,the code is executed one line at a time to make it easier to identify the exact point that the run-time error occurs.
Question
________ provide management with a "Big picture" view of the business,usually from multiple perspectives using various charts and other graphical representations.
Question
The ________ window contains a list of all the properties of a selected object such as name,size,and color.
Question
Press F3 in the VBE to display the Object Browser,which shows properties,methods,and events for an object.
Question
The two primary types of procedures that are supported by VBA are Sub procedures and ________ procedures.
Question
A(n)________ is a special kind of variable used to refer to one of the pieces of data provided in a method.
Question
________ is a powerful programming language that is part of most Microsoft Office applications.
Question
Names for Sub procedures must begin with a letter and cannot contain any spaces.
Unlock Deck
Sign up to unlock the cards in this deck!
Unlock Deck
Unlock Deck
1/99
auto play flashcards
Play
simple tutorial
Full screen (f)
exit full mode
Deck 14: Visual Basic for Applications
1
________ are visual controls that allow you to quickly and easily filter your data in an interactive way.

A)Events
B)Form controls
C)Objects
D)Slicers
D
2
Creating a lookup table and using the ________ function is a common approach to linking values to various form controls.

A)IF
B)SUBTOTAL
C)VLOOKUP
D)HLOOKUP
C
3
Microsoft Excel objects have ________,which are actions performed within Excel.

A)monitors
B)options
C)methods
D)references
C
4
Within the Visual Basic Editor,the ________ window reveals a list of all the properties of a selected object,like size and color.

A)Information
B)Explorer
C)Code
D)Properties
Unlock Deck
Unlock for access to all 99 flashcards in this deck.
Unlock Deck
k this deck
5
All of the following statements are TRUE regarding Visual Basic for Applications EXCEPT:

A)VBA allows a user to implement a wide variety of enhancements to many Microsoft Office applications.
B)VBA is considered a very basic form of C++ programming.
C)VBA provides additional tools that can enhance functionality and usability of an Excel application.
D)VBA manipulates objects by using the methods and properties associated with them.
Unlock Deck
Unlock for access to all 99 flashcards in this deck.
Unlock Deck
k this deck
6
When writing code,and several objects are being referenced at one time,it is necessary to put periods in between each object,called ________.

A)parameters
B)separators
C)indicators
D)regulators
Unlock Deck
Unlock for access to all 99 flashcards in this deck.
Unlock Deck
k this deck
7
Microsoft Office has a tool built into it that is used to create and edit within Visual Basic.Which selection below is that tool?

A)Visual Basic Conveyor
B)Visual Basic Illustrator
C)Visual Basic Editor
D)Visual Basic Player
Unlock Deck
Unlock for access to all 99 flashcards in this deck.
Unlock Deck
k this deck
8
A type of variable that refers to one of the pieces of data provided in a method is called a(n)________.

A)parameter
B)module
C)object
D)method
Unlock Deck
Unlock for access to all 99 flashcards in this deck.
Unlock Deck
k this deck
9
Which type of model below BEST describes a hierarchical collection of items that can be manipulated when using Visual Basic?

A)Organizational
B)Subject
C)Object
D)Program
Unlock Deck
Unlock for access to all 99 flashcards in this deck.
Unlock Deck
k this deck
10
All of the following statements are TRUE about business intelligence EXCEPT:

A)Business intelligence is a variety of software applications that are used to analyze an organization's data.
B)The role of BI has increased over the last decade because the amount of data being collected by businesses continues to grow at a rapid rate.
C)The most recent trend, which appears that it will be short-lived, is the desire for digital dashboards.
D)Dashboards provide management with a "big picture" view of the business, usually from multiple perspectives using various charts and other graphical representations.
Unlock Deck
Unlock for access to all 99 flashcards in this deck.
Unlock Deck
k this deck
11
________ are defined as attributes of an object that can be manipulated using Visual Basic.

A)Indicators
B)Properties
C)Modules
D)Collections
Unlock Deck
Unlock for access to all 99 flashcards in this deck.
Unlock Deck
k this deck
12
A(n)________ consists of a hierarchical collection of objects,consisting of properties,methods,and events that can be manipulated using VBA.

A)method
B)collection
C)source
D)object model
Unlock Deck
Unlock for access to all 99 flashcards in this deck.
Unlock Deck
k this deck
13
Within the Visual Basic Editor,the Project ________ window houses a hierarchical listing of all object in a workbook,which includes macros and other modules.

A)Properties
B)Explorer
C)Code
D)Information
Unlock Deck
Unlock for access to all 99 flashcards in this deck.
Unlock Deck
k this deck
14
A ________ has a very similar function as the spin button,however,the value of the linked cell is increased or decreased by sliding it to the left or right.

A)scroll bar
B)spin button
C)menu
D)labels
Unlock Deck
Unlock for access to all 99 flashcards in this deck.
Unlock Deck
k this deck
15
________ are objects that can be placed into an Excel worksheet,providing the functionality to interact with your models.

A)Form controls
B)Events
C)Loops
D)Objects
Unlock Deck
Unlock for access to all 99 flashcards in this deck.
Unlock Deck
k this deck
16
Dynamic ________ offer additional clarity in PivotCharts by displaying the year and/or month that is being displayed when filtered.

A)scroll bars
B)spin buttons
C)menus
D)labels
Unlock Deck
Unlock for access to all 99 flashcards in this deck.
Unlock Deck
k this deck
17
Objects grouped together are called object ________,which can also be referred to as objects.

A)collections
B)methods
C)parameters
D)sources
Unlock Deck
Unlock for access to all 99 flashcards in this deck.
Unlock Deck
k this deck
18
In Visual Basic Editor,the ________ window is where all the Visual Basic language is typed,and where macro data can be viewed.

A)Code
B)Properties
C)Macro
D)Graphic
Unlock Deck
Unlock for access to all 99 flashcards in this deck.
Unlock Deck
k this deck
19
A ________ is a form control that is linked to a specific cell.

A)scroll bar
B)radio button
C)menu
D)list
Unlock Deck
Unlock for access to all 99 flashcards in this deck.
Unlock Deck
k this deck
20
To refer to a particular object using VBA,the objects need to be referred to in their hierarchical structure.For example,to refer to cell A1 in a specific worksheet,the code would be ________.

A)Application.Workbook (workbookname.xlsx).Sheets("Sheet1").Range("A1")
B)Application.Workbook (workbookname.xlsx).Worksheet("Sheet1").Range("A1")
C)Application.Worksheet("Sheet1").Range("A1")
D)Application.Workbook (workbookname.xlsx).Worksheet(Range("A1"))
Unlock Deck
Unlock for access to all 99 flashcards in this deck.
Unlock Deck
k this deck
21
All of the following statements are TRUE regarding loops in VBA EXCEPT:

A)Loops are used to execute a series of statements multiple times.
B)In the syntax of the Do loop, the data type of the element and group must be the same.
C)The number of times the code is executed can be determined by a specified number, until a condition is true or false, or the code can continue to execute however many objects there are in a collection.
D)There are essentially two categories of loops: Do loops and For...Next loops.
Unlock Deck
Unlock for access to all 99 flashcards in this deck.
Unlock Deck
k this deck
22
With the VBA ________ control structure there is virtually no limit to the commands and logic that can be applied.

A)If-Then
B)If-Then-Else
C)If-Then-Again
D)If-Then-End
Unlock Deck
Unlock for access to all 99 flashcards in this deck.
Unlock Deck
k this deck
23
Visual Basic can store values in a ________,which is the space in a computer's memory that is given a name and is used to store values.

A)warehouse
B)variable
C)data port
D)hard drive
Unlock Deck
Unlock for access to all 99 flashcards in this deck.
Unlock Deck
k this deck
24
________ is an interactive data visualization,exploration,and presentation experience that encourages the creation of beautiful ad-hoc reports.

A)PivotTable
B)PowerPivot
C)Power View
D)PivotChart
Unlock Deck
Unlock for access to all 99 flashcards in this deck.
Unlock Deck
k this deck
25
The ________ loops until a specified number of loops have been completed.

A)Do…While loop
B)Do…Until loop
C)For loop
D)For…Each loop
Unlock Deck
Unlock for access to all 99 flashcards in this deck.
Unlock Deck
k this deck
26
Protecting the VBA code with ________ ensures that no unauthorized person will access the code.

A)a password
B)encryption
C)form control
D)method
Unlock Deck
Unlock for access to all 99 flashcards in this deck.
Unlock Deck
k this deck
27
All of the following are ways to make VBA code easy to read EXCEPT ________.

A)Comments
B)Line breaks
C)Paragraphs
D)Indentations
Unlock Deck
Unlock for access to all 99 flashcards in this deck.
Unlock Deck
k this deck
28
A ________ error occurs when the code is executed,displaying a description of the error.

A)data port
B)debugging
C)run-time
D)hard drive
Unlock Deck
Unlock for access to all 99 flashcards in this deck.
Unlock Deck
k this deck
29
A(n)________ is an effective way of using VBA code to increase the interactivity of a dashboard by prompting the user for information and storing that information in a variable to be used later.

A)input box
B)spinner
C)list
D)scroll bar
Unlock Deck
Unlock for access to all 99 flashcards in this deck.
Unlock Deck
k this deck
30
A(n)________ at the workbook level would be when a user opens or closes a workbook.

A)procedure
B)variable
C)event
D)object
Unlock Deck
Unlock for access to all 99 flashcards in this deck.
Unlock Deck
k this deck
31
The ________ loops through an object collection or an array.

A)Do…While loop
B)Do…Until loop
C)For loop
D)For…Each loop
Unlock Deck
Unlock for access to all 99 flashcards in this deck.
Unlock Deck
k this deck
32
All of the following statements are TRUE about improving the readability of VBA EXCEPT:

A)An important aspect of writing VBA is making sure the code is easy to read so that you and others can interpret what is happening.
B)You need to take extra steps to keep the code legible and to document what steps you are taking and why.
C)Commenting code in VBA is an excellent way of explaining the purpose and the intention of a procedure.
D)Lengthy statements become difficult to read, because without pressing Tab, the lines of code will extend continuously to the left.
Unlock Deck
Unlock for access to all 99 flashcards in this deck.
Unlock Deck
k this deck
33
Power Views are mechanisms that deliver business intelligence in graphical form.
Unlock Deck
Unlock for access to all 99 flashcards in this deck.
Unlock Deck
k this deck
34
________ are used to execute a series of statements multiple times.

A)Data ports
B)Variables
C)Elements
D)Loops
Unlock Deck
Unlock for access to all 99 flashcards in this deck.
Unlock Deck
k this deck
35
A container for code is called a ________.

A)Sub procedure
B)module
C)function procedure
D)Properties window
Unlock Deck
Unlock for access to all 99 flashcards in this deck.
Unlock Deck
k this deck
36
A ________ performs an action on your project or workbook,such as renaming a worksheet or clearing filtered values from PivotTables.

A)Sub procedure
B)module
C)function procedure
D)Properties window
Unlock Deck
Unlock for access to all 99 flashcards in this deck.
Unlock Deck
k this deck
37
There are two primary types of procedures which are supported by Visual Basic: a Sub procedure and a ________ procedure.

A)Virtual
B)Prime
C)Function
D)Base
Unlock Deck
Unlock for access to all 99 flashcards in this deck.
Unlock Deck
k this deck
38
All of the following statements are TRUE about VBA procedures EXCEPT:

A)Function procedures are often used to create custom functions that can be entered in worksheet cells.
B)You can have zero or hundreds of Sub procedures and functions written within a single module.
C)If a Sub procedure is to run when a workbook opens or a worksheet becomes active, then it is typically stored in the workbook or worksheet object to take advantage of the Procedure menu at the top of the Code window.
D)Three primary types of procedures are supported by VBA.
Unlock Deck
Unlock for access to all 99 flashcards in this deck.
Unlock Deck
k this deck
39
The ________ allows you to check and fix VBA code errors.

A)parameter
B)debugger
C)message box
D)properties box
Unlock Deck
Unlock for access to all 99 flashcards in this deck.
Unlock Deck
k this deck
40
All of the following statements are TRUE about protecting VBA code EXCEPT:

A)It is considered best practice to export any VBA modules as text files before protecting them with a password.
B)Before a worksheet is protected, ensure that cells that need to be allowed to be changed to use the dashboard are not locked.
C)Some managers may need to access the raw data in a workbook and should know VBA to be able to unhide those worksheets.
D)Protecting worksheets from intentional or unintentional modification can be done by hiding the worksheets in the Excel workbook.
Unlock Deck
Unlock for access to all 99 flashcards in this deck.
Unlock Deck
k this deck
41
The Properties window contains a list of all the properties of a selected object such as name,size,and color.
Unlock Deck
Unlock for access to all 99 flashcards in this deck.
Unlock Deck
k this deck
42
A Sub procedure performs an action on your project or workbook,such as renaming a worksheet or clearing filtered values from PivotTables.
Unlock Deck
Unlock for access to all 99 flashcards in this deck.
Unlock Deck
k this deck
43
Methods are attributes of an object that can be referred to or manipulated using VBA.
Unlock Deck
Unlock for access to all 99 flashcards in this deck.
Unlock Deck
k this deck
44
Slicers are visual controls that allow you to quickly and easily filter your data in an interactive way.
Unlock Deck
Unlock for access to all 99 flashcards in this deck.
Unlock Deck
k this deck
45
A particular object can be referenced inside a collection by referring to the object collection and then the name or number that represents that specific member of that collection.
Unlock Deck
Unlock for access to all 99 flashcards in this deck.
Unlock Deck
k this deck
46
An object model consists of a hierarchical collection of objects,consisting of properties,methods,and events that can be manipulated using VBA.
Unlock Deck
Unlock for access to all 99 flashcards in this deck.
Unlock Deck
k this deck
47
A parameter is a special kind of variable used to refer to one of the pieces of data provided in a method.
Unlock Deck
Unlock for access to all 99 flashcards in this deck.
Unlock Deck
k this deck
48
The Code window contains a hierarchical list of all the objects in open workbooks,including macros,modules,and worksheets.
Unlock Deck
Unlock for access to all 99 flashcards in this deck.
Unlock Deck
k this deck
49
A message box is a form control that is linked to a specific cell.
Unlock Deck
Unlock for access to all 99 flashcards in this deck.
Unlock Deck
k this deck
50
The Project Explorer window is where all the VBA code is typed and also where VBA generated by a recorded macro can be viewed and edited.
Unlock Deck
Unlock for access to all 99 flashcards in this deck.
Unlock Deck
k this deck
51
The two primary types of procedures that are supported by VBA are Sub procedures and module procedures.
Unlock Deck
Unlock for access to all 99 flashcards in this deck.
Unlock Deck
k this deck
52
Creating a lookup table and using the HLOOKUP function is a common approach to linking values to various form controls.
Unlock Deck
Unlock for access to all 99 flashcards in this deck.
Unlock Deck
k this deck
53
Object-oriented programming uses a hierarchy of objects,also called classes,as the focus of the programming.
Unlock Deck
Unlock for access to all 99 flashcards in this deck.
Unlock Deck
k this deck
54
Labels are critical to dashboard design and can add clarity to the graphics being displayed.
Unlock Deck
Unlock for access to all 99 flashcards in this deck.
Unlock Deck
k this deck
55
Dashboards provide management with a "Big picture" view of the business,usually from multiple perspectives using various charts and other graphical representations.
Unlock Deck
Unlock for access to all 99 flashcards in this deck.
Unlock Deck
k this deck
56
A function procedure is a group of VBA statements that perform a calculation and return a single value.
Unlock Deck
Unlock for access to all 99 flashcards in this deck.
Unlock Deck
k this deck
57
It is best to group your Sub procedures together by what they do into separate modules,renaming the module appropriately to describe the kind of procedures it contains.
Unlock Deck
Unlock for access to all 99 flashcards in this deck.
Unlock Deck
k this deck
58
With a scroll bar,the value of the linked cell is increased or decreased by sliding the scroll bar to the left or right.
Unlock Deck
Unlock for access to all 99 flashcards in this deck.
Unlock Deck
k this deck
59
Dashboards are objects that can be placed into an Excel worksheet,providing the functionality to interact with your models.
Unlock Deck
Unlock for access to all 99 flashcards in this deck.
Unlock Deck
k this deck
60
Visual Basic for Applications is a powerful programming language that is part of all Microsoft Office applications.
Unlock Deck
Unlock for access to all 99 flashcards in this deck.
Unlock Deck
k this deck
61
A(n)________ performs an action on your project or workbook,such as renaming a worksheet or clearing filtered values from PivotTables.
Unlock Deck
Unlock for access to all 99 flashcards in this deck.
Unlock Deck
k this deck
62
You need to take extra steps to keep the code legible and to document what steps you are taking and why.
Unlock Deck
Unlock for access to all 99 flashcards in this deck.
Unlock Deck
k this deck
63
An easy way to gain a better understanding of how VBA works is to use the VBA Recorder to generate VBA code for actions you want to complete.
Unlock Deck
Unlock for access to all 99 flashcards in this deck.
Unlock Deck
k this deck
64
________ programming uses a hierarchy of objects,also called classes,as the focus of the programming.
Unlock Deck
Unlock for access to all 99 flashcards in this deck.
Unlock Deck
k this deck
65
________ are visual controls that allow you to quickly and easily filter your data in an interactive way.
Unlock Deck
Unlock for access to all 99 flashcards in this deck.
Unlock Deck
k this deck
66
A(n)________ is a form control that is linked to a specific cell.
Unlock Deck
Unlock for access to all 99 flashcards in this deck.
Unlock Deck
k this deck
67
Creating a lookup table and using the ________ function is a common approach to linking values to various form controls.
Unlock Deck
Unlock for access to all 99 flashcards in this deck.
Unlock Deck
k this deck
68
To create a function procedure you must first declare it is a function,and then provide the function with a name and an opening parenthesis.
Unlock Deck
Unlock for access to all 99 flashcards in this deck.
Unlock Deck
k this deck
69
A particular object can be referenced inside a collection by referring to the ________ collection and then the name or number that represents that specific member of that collection.
Unlock Deck
Unlock for access to all 99 flashcards in this deck.
Unlock Deck
k this deck
70
A(n)________ is a group of VBA statements that perform a calculation and return a single value.
Unlock Deck
Unlock for access to all 99 flashcards in this deck.
Unlock Deck
k this deck
71
An object model consists of a(n)________ collection of objects,consisting of properties,methods,and events that can be manipulated using VBA.
Unlock Deck
Unlock for access to all 99 flashcards in this deck.
Unlock Deck
k this deck
72
A run-time error occurs when the code is executed,displaying a description of the error.
Unlock Deck
Unlock for access to all 99 flashcards in this deck.
Unlock Deck
k this deck
73
When using the debugger,the code is executed one line at a time to make it easier to identify the exact point that the run-time error occurs.
Unlock Deck
Unlock for access to all 99 flashcards in this deck.
Unlock Deck
k this deck
74
________ provide management with a "Big picture" view of the business,usually from multiple perspectives using various charts and other graphical representations.
Unlock Deck
Unlock for access to all 99 flashcards in this deck.
Unlock Deck
k this deck
75
The ________ window contains a list of all the properties of a selected object such as name,size,and color.
Unlock Deck
Unlock for access to all 99 flashcards in this deck.
Unlock Deck
k this deck
76
Press F3 in the VBE to display the Object Browser,which shows properties,methods,and events for an object.
Unlock Deck
Unlock for access to all 99 flashcards in this deck.
Unlock Deck
k this deck
77
The two primary types of procedures that are supported by VBA are Sub procedures and ________ procedures.
Unlock Deck
Unlock for access to all 99 flashcards in this deck.
Unlock Deck
k this deck
78
A(n)________ is a special kind of variable used to refer to one of the pieces of data provided in a method.
Unlock Deck
Unlock for access to all 99 flashcards in this deck.
Unlock Deck
k this deck
79
________ is a powerful programming language that is part of most Microsoft Office applications.
Unlock Deck
Unlock for access to all 99 flashcards in this deck.
Unlock Deck
k this deck
80
Names for Sub procedures must begin with a letter and cannot contain any spaces.
Unlock Deck
Unlock for access to all 99 flashcards in this deck.
Unlock Deck
k this deck
locked card icon
Unlock Deck
Unlock for access to all 99 flashcards in this deck.