IIf AND statement in Access

John P

Board Regular
Joined
Oct 17, 2002
Messages
108
Most of my tables have lookup tables to calculate values, but I am in the need of an IF/AND statement and do not have the Access knowledge to draft one. In Excel (substituing my field names for Excel cells) it would look like IF(AND(TranType=PX, Market<>NAT,Derived Type=PA),1,0)

How would I write this in Access? Any input is appreciated. Thanks
 

Excel Facts

Ambidextrous Undo
Undo last command with Ctrl+Z or Alt+Backspace. If you use the Undo icon in the QAT, open the drop-down arrow to undo up to 100 steps.
Try this:

MyValue: IIf(([TranType]="PX") And ([Market]<>"NAT") And ([Derived Type]="PA"),1,0)
 
Upvote 0
Bunu Access'te nasıl yazarım?

= IF (VE (G5 <> ""; I5 = ""); G5; IF (VE (G5 = ""; I5 <> ""); I5; IF (VE (G5 <> ""; I5 <> ""); I5 ve "-" & G5)))
 
Upvote 0
benuva has asked the same question here, and received answers, though not solved
http://www.accessforums.net/showthre...885#post409885

While we do not prohibit Cross-Posting on this site, we do ask that you please mention you are doing so and provide links in each of the threads pointing to the other thread (see rule 13 here along with the explanation:
Forum Rules). This way, other members can see what has already been done in regards to a question, and do not waste time working on a question that may already be answered.
 
Upvote 0

Forum statistics

Threads
1,214,523
Messages
6,120,028
Members
448,940
Latest member
mdusw

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