View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Frank Kabel Frank Kabel is offline
external usenet poster
 
Posts: 3,885
Default How to get Row & Column in Excel 2000 VB?

Hi
msgbox activecell.row
msgbox activecell.column

--
Regards
Frank Kabel
Frankfurt, Germany


J wrote:
For Example, if I was in cell C5, i would like to be able
to assign row = 3 and column = 5. Is there a function in
Excel VB to do that. Currently, I used the absolute
address and I have to parse it to get the row and column
information. Is there a easier way?

Thanks in advance.