non blanks

  • Thread starter Thread starter alldreams
  • Start date Start date
A

alldreams

How could I get a formula to work for the last non blank
colum of a cell range?

Any help will be greatly appreciated..
 
alldreams said:
How could I get a formula to work for the last non blank
colum of a cell range?

Any help will be greatly appreciated..

Hi
e.g.
=COUNTA($A:$A)
will give you number of non blanks within a row

If you have no blank rows in between you can use
=OFFSET($A$1,COUNTA($A:$A)-1,0)
to get the last non blank cell

HTH
Frank
 
Back
Top