where criteria looking at multiple fields

camg12

Registered User.
Local time
Today, 04:36
Joined
Jan 5, 2010
Messages
18
I'm having a hard time thinking this through. Below is an example of the data. I want to only include those records were

IIf([TYPE]='E',[LOC]='T') and IIf([TYPE]='C',[LOC]='S')
or to just exclude the records (where Type = E And Loc = S)

but I don't know how to write it and include it in my criteria. Any help would be appreciated.
 

Attachments

... or to just exclude the records (where Type = E And Loc = S)
Perhaps:
Code:
            [Type] field    |    [Loc] field
==============================================
Criteria:       <> 'E'               <> 'S'
 

Users who are viewing this thread

Back
Top Bottom