Cell Reference Flashcards
0
Q
How to go to a certain cell?
A
Application.GoTo Reference:=Worksheets(“Sheet1”).Range(“A4”), scroll:= True
1
Q
How to refer to a cell in a different workbook?
A
Application.Workbooks(“Practice Excel03.xlsm”).Worksheets (“Sheet1”).Range(“A4”)
2
Q
How to select visible cells only?
A
Range(“A1:G1”).SpecialCells(xlCellTypeVisible).Select
3
Q
How to select blank cells?
A
Range(“A4:K7890”).SpecialCells(xlCellTypeBlanks).Select
4
Q
How to select cells with formulas?
A
Range(“A4:N4000”).SpecialCells(xlCellTypeFormulas).Select
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