View Full Version : all choices from a combo box


deekras
06-18-2000, 06:33 PM
i would like to be able to have the choice to select only one 'category' or all the 'categories'.

ingvar68
06-22-2000, 09:40 PM
i do so:
if user nothing select in list that he selected all-
...
if isnull(me![LIST_NAME]) then
'all
else
'something
end if
...

or you may use special function to fill list with first value-all. see help.
glad to answer

deekras
07-24-2000, 04:46 PM
can you please expound on all that you have coded.