List Header Rows Property

  • Thread starter Thread starter Mike
  • Start date Start date
M

Mike

Thanks in advance for any help.

Is there a VBA function that will tell me the row number
of the active cell? For example, say that I am in cell
G149, this function would return the value 149.

I saw the List Header Rows Property in the Object Browser
but I'm not really sure if this will do the trick.

I am using Excel 2000. Thanks again.

Mike
 
Mike,

Use the Row property. E.g.,

Dim R As Long
R = ActiveCell.Row


--
Cordially,
Chip Pearson
Microsoft MVP - Excel
Pearson Software Consulting, LLC
www.cpearson.com
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top