I am trying to figure out a way to allow the control to have an ALL function.
My only idea has been to simply add a record to the appropriate table that just says ALL, then, in the query criteria I used an IIF statement to say that if the control value was anything other than the ALL entry, use the control value, otherwise, do not include the criteria.
CODE
IIf([Forms]![frm_reportParameters].[cbo_facility].[value]<5,[Forms]![frm_reportParameters].[cbo_facility].[value],<=5)
(there are only four records in tbl_facility, the fifth is the ALL entry). When I select any facility, it works as expected, but when I select ALL, the query returns no entries.
Any ideas?