I only have a single workbook with one sheet open with only a number in cell(2,3).
when the code reaches this line:
Debug.Print Range(ActiveSheet.Cells(2, 3)).Value
or this line:
Range(ActiveSheet.Cells(2, 3)).Select
I get
Method of "range' of object'_gobal" failed
Since this line is essentially copied from "How to select cells/ranges by using Visual Basic procedures in Excel" in Microsoft Docs, I am perplexed as to why it doesn't work.
Sub testCode()
Debug.Print ActiveSheet.Range(ActiveSheet.Cells(5, 3)).Value
ActiveSheet.Range(ActiveSheet.Cells(5, 3)).Select
End Sub