Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Hi - I have two columns as below:
A B 01/03/07 B1234 01/04/07 B1235 01/05/07 B1236 01/06/07 I need a formula that will find the last entry in column B and return the date on the same row from column A, is this possible? Thanks Becks |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
One way where c has dates and b has strings
=INDEX(C3:C10,MATCH("zzzzzzzzz",D3:D10)) -- Don Guillett SalesAid Software "Becks" wrote in message ... Hi - I have two columns as below: A B 01/03/07 B1234 01/04/07 B1235 01/05/07 B1236 01/06/07 I need a formula that will find the last entry in column B and return the date on the same row from column A, is this possible? Thanks Becks |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Hi Beck
as shown on your sample, i assume that the columns A and B has data in ascending order.. =LOOKUP(LOOKUP(2,1/(B1:B16<""),B1:B16),B1:B16,A1:A16) u may get the date on column A that corrsponds to the last filled cell in column B range. -- ***** birds of the same feather flock together.. "Becks" wrote: Hi - I have two columns as below: A B 01/03/07 B1234 01/04/07 B1235 01/05/07 B1236 01/06/07 I need a formula that will find the last entry in column B and return the date on the same row from column A, is this possible? Thanks Becks |
#4
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Cheers Driller, that worked a treat!
Becks "driller" wrote: Hi Beck as shown on your sample, i assume that the columns A and B has data in ascending order.. =LOOKUP(LOOKUP(2,1/(B1:B16<""),B1:B16),B1:B16,A1:A16) u may get the date on column A that corrsponds to the last filled cell in column B range. -- ***** birds of the same feather flock together.. "Becks" wrote: Hi - I have two columns as below: A B 01/03/07 B1234 01/04/07 B1235 01/05/07 B1236 01/06/07 I need a formula that will find the last entry in column B and return the date on the same row from column A, is this possible? Thanks Becks |
#5
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
you're welcome
i've seen there are also other options you can please to consider.. regards -- ***** birds of the same feather flock together.. "Becks" wrote: Cheers Driller, that worked a treat! Becks "driller" wrote: Hi Beck as shown on your sample, i assume that the columns A and B has data in ascending order.. =LOOKUP(LOOKUP(2,1/(B1:B16<""),B1:B16),B1:B16,A1:A16) u may get the date on column A that corrsponds to the last filled cell in column B range. -- ***** birds of the same feather flock together.. "Becks" wrote: Hi - I have two columns as below: A B 01/03/07 B1234 01/04/07 B1235 01/05/07 B1236 01/06/07 I need a formula that will find the last entry in column B and return the date on the same row from column A, is this possible? Thanks Becks |
#6
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Hello,
=LOOKUP(2,1/NOT(ISBLANK(B1:B999)),A1:A999) Regards, Bernd |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Reusing formula | Excel Discussion (Misc queries) | |||
Dynamic Range with unused formula messing up x axis on dynamic graph | Charts and Charting in Excel | |||
Match then lookup | Excel Worksheet Functions | |||
Formula Problem - interrupted by #VALUE! in other cells!? | Excel Worksheet Functions | |||
Formula checking multiple worksheets | Excel Worksheet Functions |