hi for example i have to write this in my formula
Sheet1!A1:HM232
is there any other way of writing this (for example using only numbers, without any letters)
Sheet1!Cells[1,1]:Cells[232,221]
thanks in advance!
hi for example i have to write this in my formula
Sheet1!A1:HM232
is there any other way of writing this (for example using only numbers, without any letters)
Sheet1!Cells[1,1]:Cells[232,221]
thanks in advance!
In VBA you can reference like so:
Set R = Sheets("Sheet1").Range(Cells(1, 1), Cells(232, 231))
In a Worksheet you can use the following formula which just requires you to have the initial cell reference (as an 'A1' style reference):
=SUM(OFFSET(A1,0,0,232,221))