Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
I've tried =if(and(cell= "1-1-2005",cell<"2/01/2005"),"yes", "no") and the
result is not right. Any thoughts? |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
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? |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Embed the Date function to convert from dates people understand to what Excel
uses: =if(and(cell=date(2005,1,1),cell<date(2005,2,1)), "yes","no") --Bruce "JHL" wrote: I've tried =if(and(cell= "1-1-2005",cell<"2/01/2005"),"yes", "no") and the result is not right. Any thoughts? |
#4
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
One way:
=IF(AND(cell=DATE(2005,1,1),cell<DATE(2005,2,1)), "yes","no") In article , JHL wrote: I've tried =if(and(cell= "1-1-2005",cell<"2/01/2005"),"yes", "no") and the result is not right. Any thoughts? |
#5
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
=AND((A1=--"2005-01-01")),(A1<--"2005-02-01)"))
-- HTH Bob Phillips (remove nothere from email address if mailing direct) "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? |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Find dates to calculate amount of work per day? Possible? | Excel Discussion (Misc queries) | |||
How do I calculate if a date is in a certain time frame? | Excel Worksheet Functions | |||
HOW TO FIND DIFF. BETW. 2 DATES, IT SHOULD BE IN YRS, MONTH & DAY | Excel Worksheet Functions | |||
formula to find and flag dates older than 30 days | Excel Worksheet Functions | |||
Finding Dates in a date range | Excel Discussion (Misc queries) |