Excel Flashcards
Unit P
To enter and edit VBA code, you work in the?
Visual Basic Editor
In VBA macro code, a sequence of VBA statements is called a?
Procedure
The first line of a procedure, called the?
Procedure header
Are variables used by other procedures that the main procedure might run.
Arguments
Items that appear in blue are?
Keywords
The keyword sub in the procedure header indicates that this is a?
Sub procedure
Is the Visual Basic equivalent of a worksheet.
Module
Is the collection of all procedures in a workbook.
Project
Displays a list of all open projects?
Project Explorer
Displays the selected module’s procedures?
Code Window
Displays a list of characteristics associated with the module?
Properties Window
Every Excel element, including a range, is considered an?
Object
Represents a cell or a range of cells.
Range object
Notice that several times in the procedure, a line of code?
Statement
Is an attribute of an object that defines one of the object’s characteristics or an aspect of it’s behavior?
Property
The last line, End sub, indicates the end of the sub procedure and is also referred to as the?
Procedure footer
When writing Visual Basic code for excel, you must follow the formatting rules, of VBA programming language?
Syntax
A list of words that can be used in the macro statement and match what you type.
AutoComplete
One way of adding this type of conditional statement in visual basic is to use an?
If Then Else Statement
Is a predefined procedure that returns (creates and displays) a value; in this case the value returned is the information the user enters.
Function
The first part of the code, Dim left footer text as string or defines, left footer text as a text string variable?
Declares
Is a location in memory in which you can temporarily store on item of information.
Variable
When a macro procedure does not run properly, it can be due to an error, referred to as a?
Bug
when you locate the error, you can then correct, or?
Debug