1. I want to design a Query/Report that lists LastName.
2. Some of the LastName fields are empty (no data).
3. In my Report or Query I want to set a criteria that says: “If the LastName field is empty then return the value in the Company field.
POINT: I do not want to list the Company field value if there is a value in the LastName field.
Can this be done?
Iff ([LastName] IsNull, [Company],[LastName])—–If the LastName field is empty then return the value in the Company field.
Thanks
Soc