hi.. i want to display the names of all the people except those who are deceased.. below is the sql query that i used but it's not working.. i just get an empty result..
if i do this without the where clause, everyone is displayed including the deceased..
Code:
SELECT IIf([Membership]="LM","LM" & [ID_No],[ID_No]) AS MbrShp, OPA_Contacts.Name, OPA_Contacts.RegtNo, OPA_Contacts.Company, OPA_Contacts.YearIn, OPA_Contacts.YearOut, [FormIn]+" - "+[FormOut] AS Forms
FROM OPA_Contacts
WHERE OPA_Contacts.Remark = NOT "Deceased";
if i do this without the where clause, everyone is displayed including the deceased..