A
ACase
Hello,
I have 3 combo box on a user 'Rpt' form. The combo boxes enable the user to
filter the report.
How do I handle Null values? If the user does not enter a selection into
the combo box - how do I pass that information down through the code to print
out everything.
I have the following
Here is my current statement - assuming the user has entered a criteria in
each, it works.
strWhere = "[Country] = '" & Me!cmb_Country & "' and [Region] = '" &
Me!cmb_Region & "' and [ClientSector] = '" & Me!cmb_Sector & "'"
So I need a simple way to check each combo box, and if its empty assign *
Thanks
AC
I have 3 combo box on a user 'Rpt' form. The combo boxes enable the user to
filter the report.
How do I handle Null values? If the user does not enter a selection into
the combo box - how do I pass that information down through the code to print
out everything.
I have the following
Here is my current statement - assuming the user has entered a criteria in
each, it works.
strWhere = "[Country] = '" & Me!cmb_Country & "' and [Region] = '" &
Me!cmb_Region & "' and [ClientSector] = '" & Me!cmb_Sector & "'"
So I need a simple way to check each combo box, and if its empty assign *
Thanks
AC