Excel Flashcards

Unit P

1
Q

To enter and edit VBA code, you work in the?

A

Visual Basic Editor

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

In VBA macro code, a sequence of VBA statements is called a?

A

Procedure

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

The first line of a procedure, called the?

A

Procedure header

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Are variables used by other procedures that the main procedure might run.

A

Arguments

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Items that appear in blue are?

A

Keywords

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

The keyword sub in the procedure header indicates that this is a?

A

Sub procedure

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Is the Visual Basic equivalent of a worksheet.

A

Module

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Is the collection of all procedures in a workbook.

A

Project

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Displays a list of all open projects?

A

Project Explorer

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

Displays the selected module’s procedures?

A

Code Window

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

Displays a list of characteristics associated with the module?

A

Properties Window

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

Every Excel element, including a range, is considered an?

A

Object

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

Represents a cell or a range of cells.

A

Range object

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

Notice that several times in the procedure, a line of code?

A

Statement

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

Is an attribute of an object that defines one of the object’s characteristics or an aspect of it’s behavior?

A

Property

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

The last line, End sub, indicates the end of the sub procedure and is also referred to as the?

A

Procedure footer

17
Q

When writing Visual Basic code for excel, you must follow the formatting rules, of VBA programming language?

A

Syntax

18
Q

A list of words that can be used in the macro statement and match what you type.

A

AutoComplete

19
Q

One way of adding this type of conditional statement in visual basic is to use an?

A

If Then Else Statement

20
Q

Is a predefined procedure that returns (creates and displays) a value; in this case the value returned is the information the user enters.

A

Function

21
Q

The first part of the code, Dim left footer text as string or defines, left footer text as a text string variable?

A

Declares

22
Q

Is a location in memory in which you can temporarily store on item of information.

A

Variable

23
Q

When a macro procedure does not run properly, it can be due to an error, referred to as a?

A

Bug

24
Q

when you locate the error, you can then correct, or?

A

Debug

25
Q

The resulting procedure, which process (or runs) multiple procedures in sequence, is referred to as the?

A

Main procedure

26
Q

To create a main procedure, you type a blank for each procedure you want to run

A

Call statement