thread,
You can do that by leaving the cboCountry Null.
Let's say you were selecting a Country from a combo (cboCountry) on a form
(frmYourFormName) for a report.
In the query behind the report you could set the criteria for your Country field to...
Like "*" & Forms!frmYourFormName!cboCountry & "*"
In effect, this says "If cboCountry is Null, report on ALL Countries... otherwise use
the selected value of cboCountry as a filter."
--
hth
Al Campagna . Candia Computer Consulting . Candia, NH USA
Microsoft Access MVP
http://home.comcast.net/~cccsolutions
"Find a job that you love, and you'll never work a day in your life."
"thread" <(E-Mail Removed)> wrote in message
news:(E-Mail Removed)...
Hi Capagna,
i accually meant to this issue
if you have list of countries coming from a query and beside this you
want to had another item that is called"all countries" just to make a
globl pick-up to all the countries or just to take out filter this is
the reason i want to add additional item
do you think its posibble?
for example:
the countries that i have in the query are
germany,india and mexico and i want to add additional option call alll
countries
Al Campagna ???:
> thread,
> Not sure what you mean, but...
> If you use a query as the RowSource for the List control, fields from "related"
> tables
> can be linked to the original table, and added to the fields the query delivers.
> Also, using a query allows calculated fields to be added...
> ex. If a query delivers Price and Qty fields, a calculated field such as
> LineTotal
> : Price * Qty can be added to the query, and displayed in the listbox.
> --
> hth
> Al Campagna . Candia Computer Consulting . Candia, NH USA
> Microsoft Access MVP
> http://home.comcast.net/~cccsolutions
>
> "Find a job that you love, and you'll never work a day in your life."
> .
>
> "thread" <(E-Mail Removed)> wrote in message
> news:(E-Mail Removed)...
> > hi all
> > is it possible to add additional field to the list of fields coming
> > from a table inside of list control,
> > i see that inside of a row source you can get an sql sentence if you
> > choose table\query but how i can add additionaly an item that doesnt
> > appears
> > for example
> > list of country coming from a table+additional option that will come
> > seperatly(not part of the country list) but will come as one of the
> > item list
> >