View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
NickHK[_3_] NickHK[_3_] is offline
external usenet poster
 
Posts: 415
Default I need to get the integer value from the address R[4]C, any ideas ?

Range("A1").Offset(4,0).Value
or if required:
Cint(Range("A1").Offset(4,0).Value

NickHK

"Goofy" bl...
I need to get the integer value from the address R[4]C, any ideas ?