Not Equal to Text

BartK

Registered User.
Local time
Today, 00:25
Joined
Jun 7, 2013
Messages
115
I'm halfway there with this, In my macro where the "Where Condition" I would like to string together 3 things that are not equal to the text and then spit out everything else on my report.

EX. [Location] not equal to "home", not equal to [work] etc.

I know the not equal is <> how do I string them together? Or is there an easier way? Thanks
 
Using the AND to join the three conditions e.g. ([Location]<>"home") AND ([Location]<>"work") AND ([Location]<>"Bank') etc.
 
Thank you so much. I didn't even think of trying to phrase it that way. Works Beautifully, little on the sluggish side. But I'll take it. Thanks once again.
 

Users who are viewing this thread

Back
Top Bottom