I have an unbounded form that allows the user to make selections to various ID's that are held in combo boxes. Now based on the selection of the drop down boxes/text box entries, I would like to generate a report specifically based on those selections. However the problem I am running into is that I can't do it all in one query using conditional statements.
Here's the generic iff conditional statement I am using.
iif(isnull(forms!formReports!control),is not null or is null,forms!formReports!control)
For fields with dates I enter
iif(isnull(forms!formReports!control),is not null or is null,between forms!formReports!control and forms!formReports!control2)
-Laughter works miracles.
Here's the generic iff conditional statement I am using.
iif(isnull(forms!formReports!control),is not null or is null,forms!formReports!control)
For fields with dates I enter
iif(isnull(forms!formReports!control),is not null or is null,between forms!formReports!control and forms!formReports!control2)
-Laughter works miracles.