S
SElgin via AccessMonster.com
I have the following query that gives me the Undefined Function 'Iff"
SELECT tblStudent.StuLastName, tblStudent.StuFirstName, tblStudent.StuMI,
tblStudent.StuDOB, Iff(IsNull([tblStudent.StuDOB]),0,-1) AS MyTest
FROM tblStudent;
I have checked the references and none are missing. I have added and deleted
a reference and that did not help either.
What I am trying to do is check a date field and if it is empty get a 0 I can
put on a report in a check box, otherwise I want a -1 for the same reason.
TIA for the help.
SELECT tblStudent.StuLastName, tblStudent.StuFirstName, tblStudent.StuMI,
tblStudent.StuDOB, Iff(IsNull([tblStudent.StuDOB]),0,-1) AS MyTest
FROM tblStudent;
I have checked the references and none are missing. I have added and deleted
a reference and that did not help either.
What I am trying to do is check a date field and if it is empty get a 0 I can
put on a report in a check box, otherwise I want a -1 for the same reason.
TIA for the help.