View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Bob Phillips[_3_] Bob Phillips[_3_] is offline
external usenet poster
 
Posts: 2,420
Default Lookup MIN Date

Oops, my bad, ignore that.

--
__________________________________
HTH

Bob

"Bob Phillips" wrote in message news:...
=MIN(IF(Sheet1!A2:A100=A2,Sheet1!B2:B100))

which is an array formula, so commit with Ctrl-Shift-enter not just Enter

--
__________________________________
HTH

Bob

"dcr" wrote in message
...
I have inherited a spreadsheet with a formula that does not work. Instead
of
returning the earliest order date it returns the first order date. I
would
like a formula to place in Sheet 2 that would populate the earliest order
date.

Sheet 1

Part Number Order Date
111 9/10/2007
113 1/1/2007
111 1/1/2007
113 2/1/2002

Sheet 2

Part Number Earliest Order Date
111 1/1/2007
113 2/1/2002

Thank you in advance!