I have a series of stores Queries/tables in an MS Access 2002 database that starts with "RP_". I would like to list those table names in a listbox menu in an MS Excel 2002 spreadsheet. Any ideas on how to do this?
|
|
|||||||
|
|
|
In the VBA Immediate window, with an Access database open, I do the following:
So in Access there's a CurrentData coClass, with an AllQueries property that can be counted and itemised. In Excel define a reference to the Microsoft Access object. Then stick something like this in a VBA module:
then in a sheet you should be able to say
and get something useful. By the way, Access would have to be running at the time I should think. |
||||||
|
|
|
In Excel, you can use ADO (ActiveX Data Objects) to work directly with the Access database. Before you can use ADO in Excel, you need to reference the appropriate library (e.g. Microsoft ActiveX Data Objects 2.8 Library) via Tools > References in the Visual Basic editor.This page should get you started on how to use ADO. You might find this example of using the |
||
|
|
|
|
Hello TheObserver, You can however dodge the whole issue with the ADO Extension Library. The code posted below should "Just Run" assuming you give it a proper db path.
Edit: Technically you can accomplish this without even writing any code... The most optimum program of the all... 0 lines:) Here is how: - Open the database you want to query. - Go to to Tools>Security>User And Group Permissions. - In the box marked "User/Group Name", select "Admin". - In the box marked "Object Name" select "MysObjects". - In the area marked "Permissions" (Just below), checkmark the box named "Read Data" - Click Ok Close the database. - Open Excel. - Go to Data>Import External Data>New Database Query. - Select MS Access Database. - Uncheck "Use Query Wizard". - Click OK. - Browse to Database. - Click Options. - Check "System Tables". - Click OK. - Build Your Query. - Click Close. - Now click View then SQL. - Paste your SQL. - Now close the window via the Red X in the upper-right hand corner and you will be prompted for a destination range. - Tada! |
|||
|
|
|
|
There are many ways to achieve this.
Now, when you open the file, the combobox will be automatically populated with the tables and query names from the database. |
||
|
|
