I have a form in MS Access where I enter a value (I'll call it Value_A) that is then passed to multiple queries. After the queries run, the results of the final query are exported to a .csv file for import into another program.
To summarize my workflow: 1) I enter a Value_A into a field in Form1, 2) I click a button in Form1 that initiates an event where Value_A is passed to a series of queries (using an On Click Event sub procedure with DoCmd), 3) the results of the final query are exported (within the same sub procedure), and I enter the next Value_A and start again.
I have about 400 values of Value_A to enter. Is there an easy way to pass all the values of Value_A through the subprocedure or to the field in the form? I can query all values of Value_A or put them into a table.
My apologies if my description is somewhat confusing.
To summarize my workflow: 1) I enter a Value_A into a field in Form1, 2) I click a button in Form1 that initiates an event where Value_A is passed to a series of queries (using an On Click Event sub procedure with DoCmd), 3) the results of the final query are exported (within the same sub procedure), and I enter the next Value_A and start again.
I have about 400 values of Value_A to enter. Is there an easy way to pass all the values of Value_A through the subprocedure or to the field in the form? I can query all values of Value_A or put them into a table.
My apologies if my description is somewhat confusing.
Comment