How to go to a certain cell?
Application.GoTo Reference:=Worksheets(“Sheet1”).Range(“A4”), scroll:= True
How to refer to a cell in a different workbook?
Application.Workbooks(“Practice Excel03.xlsm”).Worksheets (“Sheet1”).Range(“A4”)
How to select visible cells only?
Range(“A1:G1”).SpecialCells(xlCellTypeVisible).Select
How to select blank cells?
Range(“A4:K7890”).SpecialCells(xlCellTypeBlanks).Select
How to select cells with formulas?
Range(“A4:N4000”).SpecialCells(xlCellTypeFormulas).Select
How to select cells with formulas but where the result in an error, e.g., vlookup error #N/A?
Range(“A100:B200”).SpecialsCells(xlCellTypeFormulas, 16).select