A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
You are comparing text to a date, instead of a date to a date.
In the formula: =MATCH("10/03/2010",C1:C5,0)
This part: "10/03/2010" is a word...not a date
You'll need to convert it to a date to match it in the list of dates.
Here's one approach:
=MATCH(--"10/03/2010",C1:C5,0)
The double-minus converts the "numeric text" to an actual numeric, a date in this case.
Does that help?
Ron Coderre
Microsoft MVP - Excel (2006 - 2010)
P.S. If any post answers your question, please mark it as the Answer (so it won't keep showing as an open item.)