Excel : Active Cell and workBook

Excel : Active Cell and workBook

Professional Development

9 Qs

quiz-placeholder

Similar activities

Sofa So Good and then some

Sofa So Good and then some

Professional Development

11 Qs

Advance MS Excel Tips and Tricks

Advance MS Excel Tips and Tricks

Professional Development

10 Qs

Excel Masterclass Part 3

Excel Masterclass Part 3

Professional Development

5 Qs

Conditional Formatting

Conditional Formatting

Professional Development

8 Qs

ICHEME - Excel Workshop

ICHEME - Excel Workshop

Professional Development

7 Qs

ITBM || Quiz: 02

ITBM || Quiz: 02

Professional Development

12 Qs

Excel for General Affairs

Excel for General Affairs

Professional Development

10 Qs

CT BNI Excel (100)

CT BNI Excel (100)

Professional Development

8 Qs

Excel : Active Cell and workBook

Excel : Active Cell and workBook

Assessment

Quiz

Professional Development

Professional Development

Hard

Created by

Ivy Professional School

Used 1+ times

FREE Resource

9 questions

Show all answers

1.

OPEN ENDED QUESTION

3 mins • 1 pt

Full Name

Evaluate responses using AI:

OFF

2.

OPEN ENDED QUESTION

3 mins • 1 pt

Student ID

Evaluate responses using AI:

OFF

3.

MULTIPLE CHOICE QUESTION

3 mins • 1 pt

What is the meaning of Range("A1").Cells in Excel VBA?

Range

Property of Object

Property of Range object

Method of Range object

4.

MULTIPLE CHOICE QUESTION

5 mins • 1 pt

Which of the following statements correctly describes the difference between Range("E11") and Cells(11, 5) in Excel VBA?

Range("E11") is more flexible for dynamic referencing than Cells(11, 5).

Range("E11") references a cell using A1 notation, while Cells(11, 5) references a cell using row and column numbers.

Range("E11") and Cells(11, 5) refer to different cells in the worksheet.

Range("E11") is used for multiple cells, while Cells(11, 5) is used for a single cell.

5.

MULTIPLE CHOICE QUESTION

5 mins • 1 pt

How do you offset rows in Excel VBA to select a range of cells starting from the active cell and extending 2 rows down?

Range(ActiveCell.Offset(1, 0), ActiveCell.Offset(2, 0)).Select

Range(ActiveCell.Offset(0, 1), ActiveCell.Offset(1, 2)).Select

Range(ActiveCell.Offset(1, 0), ActiveCell.Offset(2, 1)).Select

Range(ActiveCell.Offset(2, 0), ActiveCell.Offset(1, 1)).Select

6.

MULTIPLE CHOICE QUESTION

3 mins • 1 pt

How can you move the active cell to the next empty cell in the current column?

ActiveCell.End(xlDown).Activate

ActiveCell.Offset(1, 0).Activate

ActiveCell.End(xlDown).Select

ActiveCell.SpecialCells(xlCellTypeBlanks).Activate

7.

MULTIPLE CHOICE QUESTION

3 mins • 1 pt

Which of the following is NOT a valid Orientation property for a PivotField?

xlPageField

xlRowField

xlColumnField

xlDataCache

8.

MULTIPLE CHOICE QUESTION

3 mins • 1 pt

Which of the following statements will change the caption of a PivotField in a pivot table?

.PivotFields("Sum of Sales").Name = " Sales"

.PivotFields("Sum of Sales").Label = " Sales"

.PivotFields("Sum of Sales").Caption = " Sales"

.PivotFields("Sum of Sales").FieldName = " Sales"

9.

MULTIPLE CHOICE QUESTION

3 mins • 1 pt

Which argument is used in the Group method to specify the grouping date data in a pivot table?

Start

End

By

Periods