D
Dan Tschippert
Hi Bernie,
I pasted your previous help below since it was a while ago and didn't know
if you would see it if I put it into the same thread.
How would I get the number to continue from one column to another. For
example, have the number start in c20 and continue through c30 then go to
e20 and continue through e30.
Thanks in advance for your help, you've been great so far.
Dan
--------------------------------------
Dan,
If your list of numbers is in column A, and your header is in row 1 (with no
blank cells belwo it) then simply:
=INDEX(A:A,COUNTA(A:A),1)
Otherwise, you can use
=INDEX(A:A,COUNTA(A:A) + "Number of blank cells above your list",1)
So, if there is one blank cell above your list:
=INDEX(A:A,COUNTA(A:A) + 1,1)
HTH,
Bernie
MS Excel MVP
I pasted your previous help below since it was a while ago and didn't know
if you would see it if I put it into the same thread.
How would I get the number to continue from one column to another. For
example, have the number start in c20 and continue through c30 then go to
e20 and continue through e30.
Thanks in advance for your help, you've been great so far.
Dan
--------------------------------------
Dan,
If your list of numbers is in column A, and your header is in row 1 (with no
blank cells belwo it) then simply:
=INDEX(A:A,COUNTA(A:A),1)
Otherwise, you can use
=INDEX(A:A,COUNTA(A:A) + "Number of blank cells above your list",1)
So, if there is one blank cell above your list:
=INDEX(A:A,COUNTA(A:A) + 1,1)
HTH,
Bernie
MS Excel MVP