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

How can you automate Excel?
Press Alt+F11 from Windows Excel to open the Visual Basic for Applications (VBA) editor.
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,213,552
Messages
6,114,278
Members
448,559
Latest member
MrPJ_Harper

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