How to reference the current total, when it could be Cell H9 or H2

  • Thread starter Thread starter Gina
  • Start date Start date
G

Gina

I have a workbook with several worksheets. Each of these worksheets has a
column (H) that has a running total. This total could be found in cell H3 or
H32, but the highest row# is always the current total.

Which function could I use in Sheet1 to return the current total of Sheet2?

Thank you !

Gina
 
=LOOKUP(99^99,Sheet2!H:H)

will return last numeric in column H

=LOOKUP(2,1/(Sheet2!H1:H65535<>""),Sheet2!H1:H65535)

will return the last anything from column H


Gord Dibben MS Excel MVP
 
Back
Top