I use the following to determine if a file is open or not. The column CaseFileClosed is a yes/no data type with a check box. It has worked fine until I started re-opening closed files. I think when I re-open the file it is changed to 0 or 1 (can't remember which) instead of a null. What expression would I use to determine if the value is null or "no"?
If IsNull(DLookup("[casefileclosed]", "Case Files", "[Case File Number]='" & Me.vCaseFileNumber & "'")) Then
Thanks in advance for your help.
If IsNull(DLookup("[casefileclosed]", "Case Files", "[Case File Number]='" & Me.vCaseFileNumber & "'")) Then
Thanks in advance for your help.