IIF statement with an AND and an OR

gheyman

Well-known Member
Joined
Nov 14, 2005
Messages
2,332
Office Version
  1. 365
Platform
  1. Windows
Is this correct?
MONTH1_PDL: IIf(((DateDiff("m",[PDIR Due Date],Now()))>1) And ((DateDiff("m",[PDIR Completed],Now()))=<1) Or ([PDIR Completed] Is Null),1,0)


I need the first condition met and only one of the next two to true

[PDIR Due Date],Now()))>1 Needs to be True

AND
[PDIR Completed],Now()))=<1 OR ([PDIR Completed] Is Null Needs to be True

Should the last two be enclosed in a bracket?
 

Excel Facts

Format cells as currency
Select range and press Ctrl+Shift+4 to format cells as currency. (Shift 4 is the $ sign).
Re: Access: IIF statement with an AND and an OR

Not quite. Try this:
Code:
MONTH1_PDL: IIf((DateDiff("m",[PDIR Due Date],Now())>1) And ((DateDiff("m",[PDIR Completed],Now())=<1) Or ([PDIR Completed] Is Null)),1,0)

The trick is to write each condition separately, and comletely, and then just drop into the structure you need, i.e.
IIF((condition1) And ((Condition2) Or (Condition3)),1,0)
 
Upvote 0

Forum statistics

Threads
1,213,489
Messages
6,113,949
Members
448,534
Latest member
benefuexx

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top