I keep getting a syntax error (missing operator) in query expression for this formula in MS-Access.
IIf([Employee List].[Employee Type]=”Employee”,Format([Employee List].[Date of Birth],'dd/mm/yyyy'),’01/01/1910’) AS Date of Birth
Basically for employee type employee show their date of birth in the employee list otherwise show 01/01/1910 for everyone else.
Does anyone know why and how I can fix this?