Pedigreeman
Registered User.
- Local time
- Today, 09:06
- Joined
- Mar 14, 2011
- Messages
- 57
Hello all,
I have a combobox on a form which filters a query. When nothing is entered into the combobox, the query lists all results excluding null values. This is what I want, but I also want the null values included. I am using the code below:
Public Function fCboSearch(vCboSearch As Variant)
If IsNull(vCboSearch) Or vCboSearch = "" Then
fCboSearch = "*" <<here I need it to include null values>>
Else
fCboSearch = vCboSearch
End If
End Function
Any suggestions?
I have a combobox on a form which filters a query. When nothing is entered into the combobox, the query lists all results excluding null values. This is what I want, but I also want the null values included. I am using the code below:
Public Function fCboSearch(vCboSearch As Variant)
If IsNull(vCboSearch) Or vCboSearch = "" Then
fCboSearch = "*" <<here I need it to include null values>>
Else
fCboSearch = vCboSearch
End If
End Function
Any suggestions?