Query criteria to return all values, including nulls

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?
 
That looks like code from one of my examples!

The easiest way is not to include "Null values".

Replace all the occurrences of "Null" with either "0" or possibly N/A
 
Why are you using the function instead of referring to the combo in the query? If you just referred to the combo in the query you could use:

[Forms]![FormNameHere]![ComboNameHere] OR [Forms]![FormNameHere]![ComboNameHere] Is Null

Which would return records only that matched with the combo but if nothing was selected it would return all records including Nulls.
 
That looks like code from one of my examples!

The easiest way is not to include "Null values".

Replace all the occurrences of "Null" with either "0" or possibly N/A

Its certainly not my work, so it could well be one of your examples that I came across on the internet. It works great apart from this null value issue. I would prefer not to replace all of the null values if possible, because the fact that they are null is relevant, but I will keep this as a back up plan if I can't find another solution - thanks for the suggestion
 
Why are you using the function instead of referring to the combo in the query? If you just referred to the combo in the query you could use:

[Forms]![FormNameHere]![ComboNameHere] OR [Forms]![FormNameHere]![ComboNameHere] Is Null

Which would return records only that matched with the combo but if nothing was selected it would return all records including Nulls.

Hi Bob, I should have explained: I have a series of comboboxes on the form which serve to filter their respective fields of the query. The user can choose how many, fields they wish to filter in the query at any single time. The method you have suggested was my first thought, but using that method, if a combobox is left with a null value it does not list any records in the query results, whereas I would like it to list all values AND null values when any one of the comboboxes is left empty.

Do you know how I might be able to achieve this?
 
it could well be one of your examples that I came across on the internet. It works great

I Recognise the code, the original article was here:

Allow a Combo Box to Return when NOT Selected

Although I think I adapted someone else's code, if I recall correctly I turned their code into the function fCboSearch(vCboSearch As Variant)

In answer to your question, have you tried changing this line:

If IsNull(vCboSearch) Or vCboSearch = "" Then

To: If vCboSearch = "" Then
 
I Recognise the code, the original article was here:

Allow a Combo Box to Return when NOT Selected

Although I think I adapted someone else's code, if I recall correctly I turned their code into the function fCboSearch(vCboSearch As Variant)

In answer to your question, have you tried changing this line:

If IsNull(vCboSearch) Or vCboSearch = "" Then

To: If vCboSearch = "" Then

Thanks for your help, but no luck on this yet. When I make this change, if the comboboxes which serve to filter the query are left without any value, the query results do not list all records including nulls; they list no records at all.

I may be wrong but I think the problem is the function line which tells the query to recall "*" rather than recalling "*" as well as "null values", but I just don't know how to write "and null values" in vba code. I presume there is an easy way of doing this, but perhaps not?
 
Interesting! I would be most interested if you manage to solve this problem. If you would be good enough to post back here when you find a solution I would be most grateful.
 
If fear that you are not going to get this to work like this using this function. But you might be better served building the query in VBA and using it that way.
 
?..... but using that method, if a combobox is left with a null value it does not list any records in the query ,"results,

Do you know how I might be able to achieve this?

this is not true, if a combo is null it is a "hit" owing to the second statement therefore all records are selected, this is standard filter by form practice.

Brian
 
If fear that you are not going to get this to work like this using this function. But you might be better served building the query in VBA and using it that way.

Hi Bob, yes I think you are right, I will look for alternative options. By the way I have found some of your other posts on here very useful, so thanks for your contributions.

Uncle Gizmo - I will let you know if I find some sort of work around. To me it seems strange that you can't simply say 'return all values including nulls' in VBA code, but I am not a programmer and could easily be missing the point.

Anyway, thanks both for your suggestions
 
this is not true, if a combo is null it is a "hit" owing to the second statement therefore all records are selected, this is standard filter by form practice.

Brian

Hi Brian, I am not refering to a universal law of comboboxes, just stating what is occuring in my particular case. I understand your point, but my understanding is that the statement "*" means "all records except null values", which is a problem for me as I want to include null values.

For example if I had 'Car_Models' as one field, and 'Car_colour' as the next field, I want the user to be able to select, for example, 'ford focus' in combobox 1 and leave the colour combobox blank, and the query table on the same form will list all 'ford focus' records of all colours including those records which have not been attributed a colour.
 
The Like function will not return nulls, I guess that this is your problem.

Brian
 
Had a think over lunch and it appears that you always want the nulls therefore the where clause for the colour combo is, in shorthand

(colourfield is null) or (colourfield Like "*" & colourcombo & "*" or colourcombo is null)

thus you will get all records including nulls if combo is null or
if a colour is selected in the combo all records containg that colour plus all null colours

Brian
 
Had a think over lunch and it appears that you always want the nulls therefore the where clause for the colour combo is, in shorthand

(colourfield is null) or (colourfield Like "*" & colourcombo & "*" or colourcombo is null)

thus you will get all records including nulls if combo is null or
if a colour is selected in the combo all records containg that colour plus all null colours

Brian

Thanks Brian, this works like you say it will and is almost what I need, but I should only see null values when a combobox is left blank. If somebody has specified 'Ford Focus' and 'Red' I want them to see a list of, say, 20 red ford focus cars. If somebody has specified 'Ford Focus' and left the colour combobox blank, it should list 300 ford focus cars of various colours, including those which were never attributed a colour (nulls). Or if somebody selects simply 'red' - excuse the pun - I would like it to list the 500 red cars of all models, including cases where the car model field has been left blank.
 
:confused:
I am now confused because what you are asking for is what the original code without the

(colourfield is null) or

would do.

Forms!formname!comboname is null

would select everything including nulls, in effect no filtering takes place.

Brian
 
I just want the following:

If the combobox is null, return all records including null values
If the combobox contains any value, return records matching the selection

Here is a simple database demonstrating the issue, if anybody gets a chance to have a look at this I would very much appreciate it.
 

Attachments

I don't have 2007/2010 so cannot open your db however if
Where fieldcolour="*" & forms!formname!combocolour & "*" or Forms!formname!combocolour is null
Does not work I am at a loss

Brian
 
I don't have 2007/2010 so cannot open your db

Apologies, I had meant to upload a 2002-2003 version. I have tried to enter your code, but to be honest I may have made some errors, as I am fairly new to access. Here is what I entered:

WHERE ([Car Model]="*" & forms!F_cars!cbo_model & "*" or Forms!F_cars!cbo_model is null)
And
([Car Colour]="*" & forms!F_cars!cbo_colour & "*" or Forms!F_cars!cbo_colour is null);
 

Attachments

Oops :( it should be Like. Not = Sorry about that.Did have it correct earlier in the thread.

On an iPad at the moment about to retire for the night early start tomorrow taking wife to hospital so not likely to be on till Friday afternoon. Hope the syntax correction solves the problems.

Brian
 

Users who are viewing this thread

Back
Top Bottom