Hey. So I looked around on the forum for how to do this and came across a link to this page:
http://www.mvps.org/access/forms/frm0043.htm (i use the 'table/query' option)
and So I copied that, and it works great for one of my combo boxes:
but when I tried it on my other combo box, the results of my combo box are:
All
All
All
All
etc...
Paul
Nanine
Ed
Pat
etc..
(there are 9 names, and the word "All" appears 9 times aswell, so the combo box has 18 things in it..)
not sure why it is doing this for this one ONLY, since it works fine without the All option, and the code controlling the all option is the same as the combo box above.
here is the code i used:
Anyone know how to make the "All" appear only once? Like I said, works perfect for the first one i pasted in, just shows "All" once..
Thanks!
Paul
http://www.mvps.org/access/forms/frm0043.htm (i use the 'table/query' option)
and So I copied that, and it works great for one of my combo boxes:
Code:
SELECT [tblProjects1].[ProjectID], [tblProjects1].[ProjectName] FROM tblProjects1 UNION Select Null as AllChoice , "(All)" as Bogus From tblProjects1 ORDER BY [tblProjects1].[ProjectID];
All
All
All
All
etc...
Paul
Nanine
Ed
Pat
etc..
(there are 9 names, and the word "All" appears 9 times aswell, so the combo box has 18 things in it..)
not sure why it is doing this for this one ONLY, since it works fine without the All option, and the code controlling the all option is the same as the combo box above.
here is the code i used:
Code:
SELECT [tblUsers1].[user_id], [tblUsers1].[FirstName] FROM tblUsers1 UNION Select Null as AllChoice , "(All)" as Bogus From tblUsers1 ORDER BY [tblUsers1].[FirstName];
Thanks!
Paul