Oct 28, 2007 #1 ftook Programmer Dec 4, 2006 80 GB I wonder if someone could please help with the dcount syntax for a yes/no field (Approver) i have : Code: If DCount("[tuuser]", "tuuser", "[tuuser] = '" & Me.pword & "'" And "[Approver]" = True) > 0 Then comes back with type mismatch
I wonder if someone could please help with the dcount syntax for a yes/no field (Approver) i have : Code: If DCount("[tuuser]", "tuuser", "[tuuser] = '" & Me.pword & "'" And "[Approver]" = True) > 0 Then comes back with type mismatch
Oct 28, 2007 Thread starter #2 ftook Programmer Dec 4, 2006 80 GB Figured it out - i post just incase it helps others with the same problem : Code: If DCount("[tuuser]", "tuuser", "[tuuser] = '" & Me.pword & "' And Approver = True") > 0 Then Upvote 0 Downvote
Figured it out - i post just incase it helps others with the same problem : Code: If DCount("[tuuser]", "tuuser", "[tuuser] = '" & Me.pword & "' And Approver = True") > 0 Then