I have a table which is used as a selection criteria
Where the value is null this is represented as "UNKNOWN"
What I want to do is then pass this back to another table as a query.
This is as far as I have got.
But I am getting a mismatch error.
Basically if the chosen text is exactly the same in tblAVNDTchsn.GROUPID and tbl_ScoutRouteAVNDT.GROUPID then I want it to select... however if the text in tblAVNDTchsn.GROUPID is "Unknown" I want it to match it up with Null values in tbl_ScoutRouteAVNDT.GROUPID.
Any help would be appreciated.
Ta!
Where the value is null this is represented as "UNKNOWN"
What I want to do is then pass this back to another table as a query.
This is as far as I have got.
Code:
SELECT IIf(tbl_AllSLMastr!Town Is Null Or tbl_AllSLMastr!Town="","Unknown",tbl_AllSLMastr!Town) AS TOWN
FROM tblAVNDTChsn1, tbl_AllSLMastr INNER JOIN tbl_ScoutRouteAVNDT ON tbl_AllSLMastr.IMSV7_COMPLGHT_UNITID = tbl_ScoutRouteAVNDT.UNITID
WHERE (((tbl_ScoutRouteAVNDT.GROUPID)=[tblAVNDTChsn1]![GROUPID] Or (tbl_ScoutRouteAVNDT.GROUPID)=(IIf([tblAVNDTChsn1]![GROUPID]="Unknown",(tbl_ScoutRouteAVNDT.GROUPID) Is Null))))
GROUP BY IIf(tbl_AllSLMastr!Town Is Null Or tbl_AllSLMastr!Town="","Unknown",tbl_AllSLMastr!Town);
But I am getting a mismatch error.
Basically if the chosen text is exactly the same in tblAVNDTchsn.GROUPID and tbl_ScoutRouteAVNDT.GROUPID then I want it to select... however if the text in tblAVNDTchsn.GROUPID is "Unknown" I want it to match it up with Null values in tbl_ScoutRouteAVNDT.GROUPID.
Any help would be appreciated.
Ta!