Thread: excel
View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
Rick Rothstein Rick Rothstein is offline
external usenet poster
 
Posts: 5,934
Default excel

There is nothing mysterious or magical about the ActiveCell... it is a range
just like Range("B1") or Cells(1,2) are... and it has the same properties as
do all range objects which include Row and Column...

MsgBox "(Row, Col) = (" & ActiveCell.Row & ", " & ActiveCell.Column & ")"

--
Rick (MVP - Excel)


"hari" wrote in message
...
In excel , through visual basic program how do i know row number / column
number of active cell