A
Antonio
Hi all
Is there anyway to extract the contents of the penultimate filled cell
Tks in advance
Is there anyway to extract the contents of the penultimate filled cell
Tks in advance
and not the penultimate...
Hi,
In a macro use
penultimatevalue = Cells(Rows.Count, "A").End(xlUp)
On a worksheet for text use
=INDEX(B:B,MATCH(REPT("z",10),B:B,1),1)
for a number number
=INDEX(B:B,MATCH(9.99999999999999E+307,B:B))
if you don't know if its a number or text
=INDIRECT("B"&MAX(IF(NOT(ISBLANK(B1:B100)),ROW(1:100))))
Which is an array so Ctrl+Shift+Enter
Mike
Gord Dibben said:=OFFSET(INDEX(B:B,MATCH(99^99,B:B)),-1,0) for the penultimate numeric value
=OFFSET(INDEX(B:B,MATCH(REPT("z",255),B:B)),-1,0) for the penultimate text
value.
Gord Dibben MS Excel MVP