Below is a copy of the query that returns either Pr, Sr, or Alert. For the Pr and Sr part, I also need to include if [Level]=M4 and [Type]=EX. I want to include that so if Left 2 of decription is Pr, and Level=M4, and Type=EX, then return Pr. Same for Sr, so if Left 2 of decription is Sr, and Level=M4, and Type=EX, then return Sr,
Sr_or_Pr: IIf(Left([Description],2)="Pr","Pr",IIf(Left([Description],2)="Sr","Sr","Alert"))
Thanks in advance for any assistance.
Sr_or_Pr: IIf(Left([Description],2)="Pr","Pr",IIf(Left([Description],2)="Sr","Sr","Alert"))
Thanks in advance for any assistance.