RSDAnalyst
New member
- Local time
- Today, 23:16
- Joined
- Jan 3, 2012
- Messages
- 5
Hello all,
This is my first ever post on this website and I hope someone can help with my Access problem.
I have table called Campaigns that has a column called Status. This Status column has 4 possible entries: Proposed, Approved, Cancelled and Closed. I am building a query linked to an Access form. On the Access form I have 4 CHECK BOXES relating to the 4 possible entries under the Status column. A user may wish to see more than 1 Status entry and therefore may tick more than 1 check box. I.e. tick the Proposed check box along with the Approved check box. How do I get the Access query to reflect multiple check box combinations BUT under a single column split by 4 check boxes? So far I can get the query to work when 1 check box is ticked. (I’m writing the query via SQL view)
(((Campaigns.Status)="Approved") = forms!Form1!Approved=-1 OR forms!Form1!Approved IS NULL)
Any help would be much appreciated.
This is my first ever post on this website and I hope someone can help with my Access problem.
I have table called Campaigns that has a column called Status. This Status column has 4 possible entries: Proposed, Approved, Cancelled and Closed. I am building a query linked to an Access form. On the Access form I have 4 CHECK BOXES relating to the 4 possible entries under the Status column. A user may wish to see more than 1 Status entry and therefore may tick more than 1 check box. I.e. tick the Proposed check box along with the Approved check box. How do I get the Access query to reflect multiple check box combinations BUT under a single column split by 4 check boxes? So far I can get the query to work when 1 check box is ticked. (I’m writing the query via SQL view)
(((Campaigns.Status)="Approved") = forms!Form1!Approved=-1 OR forms!Form1!Approved IS NULL)
Any help would be much appreciated.