Hi guys--
Total Access newb here, I have a database that has an "Origin Country" field and need to standardize the names...ex. Canada needs to be CAN, but are currently CA and CN.
Here is what I came up with so far:
Code:
OCountry: IIf([Origin Country]="CA","CAN",iif([Origin Country]="CN","CAN",iif([Origin Country]="MX", "MEX",iif([Origin Country]="ME", "MEX",[Origin Country])))
However, it does not create the new country code as I had hope. Not sure if OR statements are possible like in excel (obviously making this much simpler), but like I said, big time n00b hoping to learn.