Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I am using the formula =LOOKUP(2,1/(1-isblank(b10:b65536)),b10:b65536) to
return the last entry in column b, and this works perfectly well, however, I need to also use the 2nd last entry, anyone any ideas |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
One way. Also, use less than 65536
=INDEX(A:A,LOOKUP(2,1/(1-ISBLANK(A10:A65536)),A10:A65536)-1,0) -- Don Guillett Microsoft MVP Excel SalesAid Software "dartanion" wrote in message ... I am using the formula =LOOKUP(2,1/(1-isblank(b10:b65536)),b10:b65536) to return the last entry in column b, and this works perfectly well, however, I need to also use the 2nd last entry, anyone any ideas |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
or
=INDEX(A:A,MATCH(99999999999,A:A)-1) -- Don Guillett Microsoft MVP Excel SalesAid Software "dartanion" wrote in message ... I am using the formula =LOOKUP(2,1/(1-isblank(b10:b65536)),b10:b65536) to return the last entry in column b, and this works perfectly well, however, I need to also use the 2nd last entry, anyone any ideas |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Finding the last entry in a column based on criteria | Excel Worksheet Functions | |||
Finding the first and last entry in a column | Excel Worksheet Functions | |||
finding an entry from two criteria. | Excel Worksheet Functions | |||
finding duplicate entry | New Users to Excel | |||
Finding last entry in column | Excel Worksheet Functions |