RonnieDobbs
MIS
Ideally this query should pull only "non-standard" from fees and only "std" or "none" from offlimits. However this is not the case. I tested this and altered a record in the one table this query is based on. I put "Blah" in the fees and "none" in the offlimits. the query picked it up? Why is the query showing this record??? How would I alter this code? This is driving me crazy.
SELECT [Confirm].[ID], [Confirm].[Fees], [Confirm].[Offlimits], [Confirm].[Office]
FROM Confirm
WHERE [fees]="Non-Standard" and [offlimits]="std" or [offlimits]="none";
thanks,
AB
SELECT [Confirm].[ID], [Confirm].[Fees], [Confirm].[Offlimits], [Confirm].[Office]
FROM Confirm
WHERE [fees]="Non-Standard" and [offlimits]="std" or [offlimits]="none";
thanks,
AB