I have VBA to the effect of
Dim address As String
address = Worksheets("Sheet1").Cells(1,1).Address
Worksheets("Sheet2").Range(address).Select
In debug mode, I see that
address="$A$1"
However, I am unable to use this value, and get the error
Run-time error '1004':
Select method of Range class failed
Any tips on why this is, and how to fix it? I was under the impression that any string could be placed into Range().