View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.programming
Johan2000 Johan2000 is offline
external usenet poster
 
Posts: 16
Default How to get the current cell position in VBA (eq. Row(), col()

Thanks so much Mr Gary K.

MsgBox ActiveCell.row & ", " & ActiveCell.col

Will also work. Can you tell me :
1. Is there any doc or help file that I can download to explain all the
excel object (such as ActiveCell.??? )
2. What is the easiest way to get back to this post? since the page number
will keep changing...
3. How to read all the post offline ? (like reading doc or pdf...)

Thank again! Have a nice day!
Johan2000




"Gary Keramidas" wrote:

maybe
MsgBox ActiveCell.Address

--


Gary


"Johan2000" wrote in message
...
Is there any way to know the Row and Col position
when user select a cell? so I can,
MsgBox( "You are in ROW "+....+"COL"+...)

thanks so much