Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Good morning,
I am trying to identify records in which 'Start Date' is null and/ the 'Unknown or -30 days' field Checked. I tried using a If statement, but I received errors each time. =if((C2 IS NULL) AND (D2 ="Checked"),[Ok], [Problem]) Start Date Unknown or -30 days 20071017 Not Checked 20071017 Not Checked |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Try this:
=If(And(C2="",D2<""),"OK","Problem") -- HTH, RD ================================================== === Please keep all correspondence within the Group, so all may benefit! ================================================== === "fgwiii" wrote in message ... Good morning, I am trying to identify records in which 'Start Date' is null and/ the 'Unknown or -30 days' field Checked. I tried using a If statement, but I received errors each time. =if((C2 IS NULL) AND (D2 ="Checked"),[Ok], [Problem]) Start Date Unknown or -30 days 20071017 Not Checked 20071017 Not Checked |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
=IF(AND(C2="",D2="checked),"OK","Problem")
"fgwiii" wrote: Good morning, I am trying to identify records in which 'Start Date' is null and/ the 'Unknown or -30 days' field Checked. I tried using a If statement, but I received errors each time. =if((C2 IS NULL) AND (D2 ="Checked"),[Ok], [Problem]) Start Date Unknown or -30 days 20071017 Not Checked 20071017 Not Checked |
#4
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Try it like this:
=IF(AND(C2="",D2="Checked"),"OK","Problem") Hope this helps. Pete On Sep 16, 3:51*pm, fgwiii wrote: Good morning, I am trying to identify records in which 'Start Date' is null and/ the 'Unknown or -30 days' *field Checked. *I tried using a If statement, but I received errors each time. =if((C2 IS NULL) AND (D2 ="Checked"),[Ok], [Problem]) Start Date * * * * * * * * * *Unknown or -30 days * * * 20071017 * * * * * * * * * * *Not Checked * * * * * * 20071017 * * * * * * * * * * *Not Checked * * * * |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Help needed with function | Excel Worksheet Functions | |||
Help needed with function | Excel Worksheet Functions | |||
Function Help Needed | Excel Worksheet Functions | |||
Needed help with if function | Excel Worksheet Functions | |||
Help needed with IF function | Excel Worksheet Functions |