R
RipperT
I want to place a checkbox on a report and have it show checked/unchecked
based on the existence of a record in a table with certain criteria. In the
checkbox's control source I have put
=IIf(IsNull(DLookup("[InmateID]", "tblSegregation", _
"([InmateId] = '" & .InmateID & "') AND ([ReleaseDate] Is Null) AND
([SegType] = 'Admin Seg')")), True, False)
but this doesn't work. What is the best way to accomplish this?
Thanks to all who can help.
Ripper
based on the existence of a record in a table with certain criteria. In the
checkbox's control source I have put
=IIf(IsNull(DLookup("[InmateID]", "tblSegregation", _
"([InmateId] = '" & .InmateID & "') AND ([ReleaseDate] Is Null) AND
([SegType] = 'Admin Seg')")), True, False)
but this doesn't work. What is the best way to accomplish this?
Thanks to all who can help.
Ripper