Simple Query Problem

brendanolear

Active Member
Joined
Apr 26, 2008
Messages
366
New to Access and unable to reconcile this query.

My current query is as follows

Name:IIF([Master]![Name1]="Alpha" OR [Master]![Name1]="Beta","Yes","No"

which gives me results as expected

I wish to amend it to:

Name:IIF([Master]![Name1]="Alpha" OR [Master]![Name1]="Beta" AND [Master]![CCode]<>"BA06","Yes","No"

To exclude any "CCodes" of "BA06"

I'm clearly missing a parameter - grateful for advice.
 

Excel Facts

Which lookup functions find a value equal or greater than the lookup value?
MATCH uses -1 to find larger value (lookup table must be sorted ZA). XLOOKUP uses 1 to find values greater and does not need to be sorted.
When you have ANDs and ORs in the same expression, you will need some more parentheses to indicate the hierarchy, or else it will make some assumptions that you may not be happy with. You are also missing a parenthesis at the end. I believe this is what you are looking for:

Name:IIF(([Master]![Name1]="Alpha" OR [Master]![Name1]="Beta") AND [Master]![CCode]<>"BA06","Yes","No")
 
Upvote 0

Forum statistics

Threads
1,215,059
Messages
6,122,917
Members
449,093
Latest member
dbomb1414

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