Depending on what you consider to be the "last" item, see if one of these
does what you want:
The value of the last non-blank cell in ROW range
=LOOKUP(2,1/(A1:M1<>""),A1:M1)
The value of the last non-blank cell in a COLUMN range
=LOOKUP(2,1/(A1:A100<>""),A1:A100)
The VALUE of the last numeric value in Col_A:
=LOOKUP(10^99,A:A)
The VALUE of the last numeric value in Row_1:
=LOOKUP(10^99,1:1)
The VALUE of the last text cell in Col_A
=LOOKUP(REPT("z",255),A:A)
The VALUE of the last text cell in Row_1
=LOOKUP(REPT("z",255),1:1)
Does that help?
***********
Regards,
Ron
XL2002, WinXP
> I have several spreadsheets which I use for data gathering (usually in
> columns, but could be in rows) and where I need to do calculations
[quoted text clipped - 12 lines]
>
> V
Victor Delta - 30 Oct 2006 21:32 GMT
Ron
That's brilliant. The third and fourth formulae are just what I needed.
Many thanks.
V
PS Still find it surprising that Excel does not have a specific
function for this (eg LAST)