Let me sum up what I'm doing.. We have an information form that someone is filling out for each of our products for each of our customers. She has been maintaining a seperate excel file for each of the forms. (about 6000 files)
I'm creating this database with 1 table for all the products (65 fields in the table). She'll enter the data on the form, then there are about 10 buttons she could hit, one for each customer. The buttons launch a report thru a query that selects only the current record in the form. There is a seperate report for each customer which shows the info the customer wants formatted the way they want.
Originally I was just going to do 1 form with every possible field (65). But then I thought I'd make it easier on her and make a form for each customer with just the info that's on their report. But, I want her to be able to jump between the forms easily.. so, If she's looking at a certain record, she could hit a button and choose a different customer's form, but the same record will be displayed.
Tabs looked like it was going to be an easy way to accomplish this, but with 50-65 fields per page I hit the limit pretty quick.
Trying to open a different form took too long and it always came up filtered to the record I had selected in the first form.
Using subforms looks promising, but the subform only shows 1 record, so I can't do a search.
What I want to do now is have just the primary key field on the main form, but hidden, and have all the other info on the sub forms. Using the controls on the main form works, but using the controls on the sub form only show 1 record. How can I make the controls on the sub form show all the records?
- Marc