I am building an accounting package for work, which pulls from a database and makes a local table. I then composed 15 queries (ultimately), which contain the summaries (counts of lab tests performed) for my monthly report. The queries cover 5 client types, times 3 billing levels (normal, expedite, rush). Ergo, 15 summary queries. Each query counts the number of tests performed in about 25 service billing groups. The 25 field names are the same in each query.
So far, all queries are working perfectly.
What I want to achieve is to make each of the queries into a record in a table. I have created an index field as the first field in each of the queries and have assigned numbers 1 to 15 to the queries, in the order I desire to position the records in the table.
But now I'm stuck. I need to pull all of these queries together to form one table, from which I may export my 15x25 Excel spreadsheet.
How do I merge these 15 queries into one table?
P.S. Naturally, I am a chemist, and only a novice at programming.
So far, all queries are working perfectly.
What I want to achieve is to make each of the queries into a record in a table. I have created an index field as the first field in each of the queries and have assigned numbers 1 to 15 to the queries, in the order I desire to position the records in the table.
But now I'm stuck. I need to pull all of these queries together to form one table, from which I may export my 15x25 Excel spreadsheet.
How do I merge these 15 queries into one table?
P.S. Naturally, I am a chemist, and only a novice at programming.