Data Filter Question

FoeHunter

Board Regular
Joined
Nov 12, 2008
Messages
236
I’m not sure if this is even possible, but I want to say it is. I am building a large database for all of the various shops in our area to track/verify their compliance with the self inspection guidelines. All of the various checklists are contained in the same table.
<?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" /><o:p> </o:p>
On the form “QuestionInterface”, I have a drop down bar called “Category” . Is there a way to have Access look at all of the values in the “SourceDocument” field of the “QuestionMaster” table and display all of the values, without repeating them? For example, I have 3 checklists with 250 questions each, I only want 3 values displayed on the drop down menu, rather than 750.
<o:p> </o:p>
Yes, I could go through and pre-define values, but the checklists change often and if there was a way to automate it I think that is the method that should be used.
<o:p> </o:p>
As always, thanks in advance.
-Foe
 

Excel Facts

Does the VLOOKUP table have to be sorted?
No! when you are using an exact match, the VLOOKUP table can be in any order. Best-selling items at the top is actually the best.
The Row Source of the Combo Box can be set to a query:
Code:
SELECT DISTINCT QuestionMaster.SourceDocument FROM QuestionMaster;
 
Upvote 0
This appears to work, I have two blank lines showing up on the dropdown menu, and I have 2 seperate checklists loaded to test, but nothing is being displayed. so I don't know which one is being selected.
 
Upvote 0
Check the column width of the combobox - set it to a small width at first (.25)
Sometimes you just cannot see the contents.
 
Upvote 0

Forum statistics

Threads
1,224,613
Messages
6,179,903
Members
452,948
Latest member
Dupuhini

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top