I have two fields that I need PDMS and PDDNMS. In the 1st field, if either the Police or Driver is checked AND if FRMS is also checked, then I need a 1; the same for the 2nd field, except if FRDNMS is checked then I need a 1. However, in both statements, the results display additional records. I am wondering if is the way the formula is written. Suggestions would be helpful. Thank you.
A. PDMS: IIf([PEPolice] Or [PEDriver]=True And [FRMS]=True,1,0)
B. PDDNMS: IIf([PEPolice] Or [PEDriver]=True And [FRDNMS]=True,1,0)
A. PDMS: IIf([PEPolice] Or [PEDriver]=True And [FRMS]=True,1,0)
B. PDDNMS: IIf([PEPolice] Or [PEDriver]=True And [FRDNMS]=True,1,0)