I have built queries for 32 facilities (an M and a P, total of 64 queries). I am trying to build a form that lists these queries in a drop-down box. When you select the query, it populates the queries data in a datasheet sub-form. As I am a novice and was taught on 2007, I roughly remember how to do this but 2003 has thrown me for a loop. I've provided a diagram of what I am looking to accomplish below. Any suggestions?

Google Drawing: https://docs.google.com/drawings/d/1tVt5ndOSTVxn2Bxz7aJRgwKjEvehMu0W_KZ02WVCCy0/edit?hl=en_US&authkey=CNqd28kJ

link|improve this question
1  
Can you narrow this down? Identify the point you're stuck on, show us what you've tried, help us understand how the result differs from what you want, and include any error messages? – HansUp Jun 30 '11 at 15:46
3  
Which part of the question is the problem? Populating the list of queries? Populating the subform? Frankly, your description of 64 queries sounds completely wrongheaded to me, as it sounds like you have 32 pairs of queries that are identical except for one criterion. That's a design error in my opinion. – David-W-Fenton Jul 1 '11 at 1:16
feedback

1 Answer

Often Things are a lot easier if you start using vba. I would suggest something around those lines: Fill the dropdown with ID,name of your facilities_table (if you dont have one - create it) and set the subform-filter to [id]=your_drop_down.

Alternatively (without VBA): create a field (lets say Link_ID) in your mainforms underlying table, and let your dropdown change that linkfield (that you dont need otherwise) and link the subform to that linkfield. The second approach is kind of a hack, that leaves residual data in your mainforms table - so I dont recommend it for a longlasting proper design - but it may help if you need a quick fix without vba.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.