Hi,
I have a form “Tools List” based on a query “Tools List Query”
I need to filter more fields on the form using a combo box for each field.
As example to filter “Radius” field I’m using cbo_Radius and in the criteria query:
Is Null Or Like [Forms]![Tools List]![cbo_Radius] & "*"
The problem is when I filter using a specific Radius value, the results will include the null records too.
If I use Like [Forms]![Tools List]![cbo_Radius] & "*" the problem is that the null records will not appear when is nothing selected in the cbo_Radius
In other words I need something like:
Iif([Forms]![Tools List]![cbo_Radius] is Null, Is Null Or Like “*”, Forms]![Tools List]![cbo_Radius])
Can you help me please?
Thanks
I have a form “Tools List” based on a query “Tools List Query”
I need to filter more fields on the form using a combo box for each field.
As example to filter “Radius” field I’m using cbo_Radius and in the criteria query:
Is Null Or Like [Forms]![Tools List]![cbo_Radius] & "*"
The problem is when I filter using a specific Radius value, the results will include the null records too.
If I use Like [Forms]![Tools List]![cbo_Radius] & "*" the problem is that the null records will not appear when is nothing selected in the cbo_Radius
In other words I need something like:
Iif([Forms]![Tools List]![cbo_Radius] is Null, Is Null Or Like “*”, Forms]![Tools List]![cbo_Radius])
Can you help me please?
Thanks