How to number only rows used --

  • Thread starter Thread starter Paula
  • Start date Start date
P

Paula

I'm trying to automatically number rows that have been used, example if there
is a number in B17 then in A17 is one, if there isn't a number in B18, leave
bank and is a number in B19 then in A19 it would enter 2 --
 
Try this formula entered in A17:

=IF(B17="","",COUNTA(B$17:B17))

Copy down as needed.
 
Hi,

Put this in A1 and drag down as far as required.

=IF(ISNUMBER(B1),COUNT($B$1:B1),"")
 

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