Original question was unclear, so attempting to simplify and rephrase.
In MS Access I have a Query that is supposed to find all records which:
- Have a PhaseID (entered by user) of X, for simplicity take 3.
- Only show the records where the priority field is set to greater or equal then 2.
Below is the query shown that is currently in existence that's supposed to achieve the above for all records having PhaseID of 3.
EDIT: the below query is formulated in the Priority field. So I need all Priorities with priority 1 not showing. That's essentially what the below is supposed to do, but it doesn't do anything.
IIf([Forms]![frm_OfferteEnOrderOpvolging]![PhaseID]=3,2,1) OR
IIf([Forms]![frm_OfferteEnOrderOpvolging]![PhaseID]=3,3,1)