A
Apprentice
I pull several excel worksheets into Access "New Tables" useing code.
I have several reports and corisponding queries that have already been
developed.
Because the tables are new, I would like a combo box that lists the new
tables for selection when calling a report. So the user would select the
table from the combo box and the query and report would then be produced
based on that selection.
Any Ideas? I have a direction useing:
SELECT MSysObjects.Name FROM MSysObjects WHERE
(((Left([Name],4))<>"MSys") AND ((MSysObjects.Type)=1)) ORDER BY
MSysObjects.Name;
But not sure what order and how to put it all together?
Thanks in advance for any help.
I have several reports and corisponding queries that have already been
developed.
Because the tables are new, I would like a combo box that lists the new
tables for selection when calling a report. So the user would select the
table from the combo box and the query and report would then be produced
based on that selection.
Any Ideas? I have a direction useing:
SELECT MSysObjects.Name FROM MSysObjects WHERE
(((Left([Name],4))<>"MSys") AND ((MSysObjects.Type)=1)) ORDER BY
MSysObjects.Name;
But not sure what order and how to put it all together?
Thanks in advance for any help.