how many rows did I selected

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi,

For example, I have selected cells(A1..E5). Any function can tell me I have
selected 5 rows (in this example)?

Thanks!
Paul
 
Hi Paul,

Assiming you are referring to VBA, try:

Dim NumOfRows As Long

NumOfRows = Selection.Rows.Count
 

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