I have this in my Filter tool but it doesn't work:
[Network Id] in ("a", "b", "c", "d") AND [Include/Exclude]="Include" AND [Service Type] not in ("1", "2")
I only get back Network ID "a" for "Include and any Service Type not "1" or "2".
In Access this works:
WHERE ((([mytbl].[Network Id])="a" Or ([mytbl].[Network Id])="b" Or ([mytbl].[Network Id])="c" Or ([mytbl].[Network Id])="d") AND (([mytbl].[Include/Exclude])="Include") AND (([mytbl].[Service Type])<>"1" And ([mytbl].[Service Type])<>"2"));
With Access, I get all Networks listed minus "Exclude"s and minus Serv Type "1" and "2". Any idea? Thanks.