Z zzcom Active Member Joined Aug 4, 2004 Messages 272 Dec 23, 2005 #1 Range("H9") is Cell(9,5). How to know Cell's (x,y) for any cell?
Norie Well-known Member Joined Apr 28, 2004 Messages 76,056 Office Version 365 Platform Windows Dec 23, 2005 #2 Try this. Code: Set rng = Range("H9") x =rng.Row y=rng.Column MsgBox "x=" & x & vbCrLf & "y=" & y
tusharm MrExcel MVP Joined May 28, 2002 Messages 11,028 Dec 23, 2005 #4 Switch to R1C1 display mode (Tools | Options > General | check 'R1C1 reference style') zzcom said: Range("H9") is Cell(9,5). How to know Cell's (x,y) for any cell? Click to expand...
Switch to R1C1 display mode (Tools | Options > General | check 'R1C1 reference style') zzcom said: Range("H9") is Cell(9,5). How to know Cell's (x,y) for any cell? Click to expand...