Filter data sheet to show records with no date... (1 Viewer)

Carpetwarehouse

Registered User.
Local time
Today, 13:58
Joined
Jun 11, 2012
Messages
25
Hi just a quick one im sure for you experts. Im having trouble with a datasheet its ran from a macro button using BrowseTo command. Im having trouble with the where condition; i would like to show records where the [FittingDate] is blank...

i have tried isnull() and [FittingDate]=""
 

pr2-eugin

Super Moderator
Local time
Today, 13:58
Joined
Nov 30, 2011
Messages
8,494
How about..
Code:
IsNull([FittingDate]) = True
Or
Code:
[FittingDate] Is Null
 

Users who are viewing this thread

Top Bottom