From: Bvdman32 on
I have a query that gets some criteria (City and State) from a form.
I have the State field set up as a ComboBox connected to a local table
I created. If a user was to type in a City (i.e. "Springfield") and
then leave the State field empty, then the query would have no
results.

How do I make the query so that if one of the fields on the form is
left empty it will run for all possibilities (i.e. look for all
Springfields in any state)?
From: Steve on
Assuming the name of your form is FrmCityState and there are two textboxes
named City and State on the form, put the following expression in the
criteria of the City field in your query:
Forms!FrmCityState!City Or (Forms!FrmCityState!City IsNull)
and put the following expression in the criteria of the State field in your
query
Forms!FrmCityState!State Or (Forms!FrmCityState!State IsNull)

Steve
santus(a)penn.com



"Bvdman32" <pnahas(a)gmail.com> wrote in message
news:cf84c7f7-5f41-4398-b882-c2fad5cc2052(a)p8g2000yqb.googlegroups.com...
>I have a query that gets some criteria (City and State) from a form.
> I have the State field set up as a ComboBox connected to a local table
> I created. If a user was to type in a City (i.e. "Springfield") and
> then leave the State field empty, then the query would have no
> results.
>
> How do I make the query so that if one of the fields on the form is
> left empty it will run for all possibilities (i.e. look for all
> Springfields in any state)?


From: John W. Vinson on
On Mon, 28 Dec 2009 13:03:31 -0500, "Steve" <notmyemail(a)address.com> wrote:

>Assuming the name of your form is FrmCityState and there are two textboxes
>named City and State on the form, put the following expression in the
>criteria of the City field in your query:
>Forms!FrmCityState!City Or (Forms!FrmCityState!City IsNull)
>and put the following expression in the criteria of the State field in your
>query
>Forms!FrmCityState!State Or (Forms!FrmCityState!State IsNull)
>
>Steve
>santus(a)penn.com

I think Steve meant to use

Is Null

rather than

IsNull

since the latter is a VBA function and the former (with the blank) is a valid
SQL criterion.

--

John W. Vinson [MVP]
From: Steve on
Thank you for correcting my typo, John!

Steve


"John W. Vinson" <jvinson(a)STOP_SPAM.WysardOfInfo.com> wrote in message
news:4v1ij59dgbrg4uda01u4vpfsicgar6h4tf(a)4ax.com...
> On Mon, 28 Dec 2009 13:03:31 -0500, "Steve" <notmyemail(a)address.com>
> wrote:
>
>>Assuming the name of your form is FrmCityState and there are two textboxes
>>named City and State on the form, put the following expression in the
>>criteria of the City field in your query:
>>Forms!FrmCityState!City Or (Forms!FrmCityState!City IsNull)
>>and put the following expression in the criteria of the State field in
>>your
>>query
>>Forms!FrmCityState!State Or (Forms!FrmCityState!State IsNull)
>>
>>Steve
>>santus(a)penn.com
>
> I think Steve meant to use
>
> Is Null
>
> rather than
>
> IsNull
>
> since the latter is a VBA function and the former (with the blank) is a
> valid
> SQL criterion.
>
> --
>
> John W. Vinson [MVP]