Cell Reference Flashcards

0
Q

How to go to a certain cell?

A

Application.GoTo Reference:=Worksheets(“Sheet1”).Range(“A4”), scroll:= True

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

How to refer to a cell in a different workbook?

A

Application.Workbooks(“Practice Excel03.xlsm”).Worksheets (“Sheet1”).Range(“A4”)

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

How to select visible cells only?

A

Range(“A1:G1”).SpecialCells(xlCellTypeVisible).Select

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

How to select blank cells?

A

Range(“A4:K7890”).SpecialCells(xlCellTypeBlanks).Select

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

How to select cells with formulas?

A

Range(“A4:N4000”).SpecialCells(xlCellTypeFormulas).Select

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

How to select cells with formulas but where the result in an error, e.g., vlookup error #N/A?

A

Range(“A100:B200”).SpecialsCells(xlCellTypeFormulas, 16).select

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