View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Chip Pearson
 
Posts: n/a
Default How to find if a date falls between 2 dates

Try

=IF(AND(A1=DATE(2005,1,1),A1<DATE(2005,2,1)),"yes ","no")


--
Cordially,
Chip Pearson
Microsoft MVP - Excel
Pearson Software Consulting, LLC
www.cpearson.com


"JHL" wrote in message
...
I've tried =if(and(cell= "1-1-2005",cell<"2/01/2005"),"yes",
"no") and the
result is not right. Any thoughts?