Microsoft KB Archive/146406: Difference between revisions

From BetaArchive Wiki
(importing KB archive)
 
m (Text replacement - """ to """)
 
Line 55: Line 55:
If the Northwind database is located in a different folder on your computer, you will need to edit the code provided below before you run it.<br />
If the Northwind database is located in a different folder on your computer, you will need to edit the code provided below before you run it.<br />
<br />
<br />
To use DAO in your macro, you must reference the Microsoft DAO Object Library or you may receive the error &quot;User-defined type not defined&quot;. To reference this library in Microsoft Excel version 7.0, activate a module sheet, click References on the Tools menu, and check the &quot;Microsoft DAO 3.0 Object Library&quot; option. To reference this library in Microsoft Excel version 97, click References on the Tools menu in the Visual Basic Editor and check the &quot;Microsoft DAO 3.5 Object Library&quot;.
To use DAO in your macro, you must reference the Microsoft DAO Object Library or you may receive the error "User-defined type not defined". To reference this library in Microsoft Excel version 7.0, activate a module sheet, click References on the Tools menu, and check the "Microsoft DAO 3.0 Object Library" option. To reference this library in Microsoft Excel version 97, click References on the Tools menu in the Visual Basic Editor and check the "Microsoft DAO 3.5 Object Library".


</div>
</div>
Line 74: Line 74:
To retrieve a table from Microsoft Access programmatically, use the following Visual Basic for Applications code:
To retrieve a table from Microsoft Access programmatically, use the following Visual Basic for Applications code:
<pre class="codesample">Sub GetTable()
<pre class="codesample">Sub GetTable()
'This sub will retrieve all the data in the &quot;Customers&quot; table in
'This sub will retrieve all the data in the "Customers" table in
'Northwind
'Northwind


Line 84: Line 84:
   Dim Path as String
   Dim Path as String


   'This line will define the Object &quot;Ws&quot; as Sheets(&quot;Sheet1&quot;)
   'This line will define the Object "Ws" as Sheets("Sheet1")
   'The purpose of this is to save typing Sheets(&quot;Sheet1&quot;)
   'The purpose of this is to save typing Sheets("Sheet1")
   'over and over again
   'over and over again
   Set Ws = Sheets(&quot;Sheet1&quot;)
   Set Ws = Sheets("Sheet1")


   'Set the Path to the database. This line is useful because
   'Set the Path to the database. This line is useful because
   'if your database is in another location, you just need to change
   'if your database is in another location, you just need to change
   'it here and the Path Variable will be used throughout the code
   'it here and the Path Variable will be used throughout the code
   Path = &quot;c:\msoffice\access\samples\northwind.mdb&quot;
   Path = "c:\msoffice\access\samples\northwind.mdb"


   'This set of code will activate Sheet1 and clear any existing data
   'This set of code will activate Sheet1 and clear any existing data
   'After clearing the data it will select cell A1
   'After clearing the data it will select cell A1
   Ws.Activate
   Ws.Activate
   Range(&quot;A1&quot;).Activate
   Range("A1").Activate
   Selection.CurrentRegion.Select
   Selection.CurrentRegion.Select
   Selection.ClearContents
   Selection.ClearContents
   Range(&quot;A1&quot;).Select
   Range("A1").Select


   'Set the Database, and RecordSet  This Table exists in the database
   'Set the Database, and RecordSet  This Table exists in the database
Line 106: Line 106:


   'This will set the RecordSet to all records in the Customers table
   'This will set the RecordSet to all records in the Customers table
   Set Rs = Db.OpenRecordset(&quot;Customers&quot;)
   Set Rs = Db.OpenRecordset("Customers")


   'You could instead set the RecordSet to, for example, the records
   'You could instead set the RecordSet to, for example, the records
   'where the Country Code is &quot;UK&quot;, without quotes. To do this, replace
   'where the Country Code is "UK", without quotes. To do this, replace
   'the line above: Set Rs = Db.OpenRecordset(&quot;Customers&quot;) with the
   'the line above: Set Rs = Db.OpenRecordset("Customers") with the
   'following:
   'following:
   '
   '
   'Set Rs = _
   'Set Rs = _
   'Db.OpenRecordset(&quot;SELECT * FROM Customers WHERE Country = 'UK';&quot;)
   'Db.OpenRecordset("SELECT * FROM Customers WHERE Country = 'UK';")




   'This loop will collect the field names and place them in the first
   'This loop will collect the field names and place them in the first
   'row starting at &quot;A1&quot;
   'row starting at "A1"
   For i = 0 To Rs.Fields.Count - 1
   For i = 0 To Rs.Fields.Count - 1
       Ws.Cells(1, i + 1).Value = Rs.Fields(i).Name
       Ws.Cells(1, i + 1).Value = Rs.Fields(i).Name
Line 128: Line 128:
   'The next line will get the data from the recordset and copy it
   'The next line will get the data from the recordset and copy it
   'into the Worksheet (Sheet1).
   'into the Worksheet (Sheet1).
   Ws.Range(&quot;A2&quot;).CopyFromRecordset Rs
   Ws.Range("A2").CopyFromRecordset Rs


   'This next code set will just select the data region and
   'This next code set will just select the data region and
   'auto-fit the columns
   'auto-fit the columns
   Sheets(&quot;Sheet1&quot;).Select
   Sheets("Sheet1").Select
   Range(&quot;A1&quot;).Select
   Range("A1").Select
   Selection.CurrentRegion.Select
   Selection.CurrentRegion.Select
   Selection.Columns.AutoFit
   Selection.Columns.AutoFit
   Range(&quot;A1&quot;).Select
   Range("A1").Select


   Rs.Close
   Rs.Close
Line 155: Line 155:


</div>
</div>
and then double-click the selected text to go to the &quot;Accessing External Databases with DAO&quot; topic.
and then double-click the selected text to go to the "Accessing External Databases with DAO" topic.


</div>
</div>

Latest revision as of 10:08, 21 July 2020

Knowledge Base


How to Retrieve a Table from Access into Excel Using DAO

Article ID: 146406

Article Last Modified on 10/11/2006



APPLIES TO

  • Microsoft Excel 97 Standard Edition
  • Microsoft Excel 95 Standard Edition



This article was previously published under Q146406

SUMMARY

In the versions of Microsoft Excel listed above, you can use Data Access Objects (DAO) in Visual Basic for Applications to retrieve a table from Microsoft Access.

To provide an example of how you can use DAO to retrieve a table from Microsoft Access, the macro described in this article uses the Northwind database that shipped with both Microsoft Office Professional for Windows 95, version 7.0, and Microsoft Office 97 Professional for Windows. If you selected the default options when you installed Microsoft Office Professional for Windows 95, version 7.0, the database is located in:

   \MSOffice\Access\Samples\Northwind.mdb
                

If you selected the default options when you installed Microsoft Office 97 Professional for Windows, the database is located in:

   \Program Files\Microsoft Office\Office\Samples\Northwind.mdb
                

If the Northwind database is located in a different folder on your computer, you will need to edit the code provided below before you run it.

To use DAO in your macro, you must reference the Microsoft DAO Object Library or you may receive the error "User-defined type not defined". To reference this library in Microsoft Excel version 7.0, activate a module sheet, click References on the Tools menu, and check the "Microsoft DAO 3.0 Object Library" option. To reference this library in Microsoft Excel version 97, click References on the Tools menu in the Visual Basic Editor and check the "Microsoft DAO 3.5 Object Library".

MORE INFORMATION

Microsoft provides programming examples for illustration only, without warranty either expressed or implied. This includes, but is not limited to, the implied warranties of merchantability or fitness for a particular purpose. This article assumes that you are familiar with the programming language that is being demonstrated and with the tools that are used to create and to debug procedures. Microsoft support engineers can help explain the functionality of a particular procedure, but they will not modify these examples to provide added functionality or construct procedures to meet your specific requirements. To retrieve a table from Microsoft Access, follow these steps:

  1. Establish a Database object.
  2. Establish a Recordset object.
  3. Retrieve the Headers (if desired).
  4. Retrieve the data from the table.

After the data is retrieved, you should close all the objects you opened by issuing .Close commands.

To retrieve a table from Microsoft Access programmatically, use the following Visual Basic for Applications code:

Sub GetTable()
'This sub will retrieve all the data in the "Customers" table in
'Northwind

   'Declare variables
   Dim Db As Database
   Dim Rs As Recordset
   Dim Ws As Object
   Dim i As Integer
   Dim Path as String

   'This line will define the Object "Ws" as Sheets("Sheet1")
   'The purpose of this is to save typing Sheets("Sheet1")
   'over and over again
   Set Ws = Sheets("Sheet1")

   'Set the Path to the database. This line is useful because
   'if your database is in another location, you just need to change
   'it here and the Path Variable will be used throughout the code
   Path = "c:\msoffice\access\samples\northwind.mdb"

   'This set of code will activate Sheet1 and clear any existing data
   'After clearing the data it will select cell A1
   Ws.Activate
   Range("A1").Activate
   Selection.CurrentRegion.Select
   Selection.ClearContents
   Range("A1").Select

   'Set the Database, and RecordSet  This Table exists in the database
   Set Db = Workspaces(0).OpenDatabase(Path, ReadOnly:=True)

   'This will set the RecordSet to all records in the Customers table
   Set Rs = Db.OpenRecordset("Customers")

   'You could instead set the RecordSet to, for example, the records
   'where the Country Code is "UK", without quotes. To do this, replace
   'the line above: Set Rs = Db.OpenRecordset("Customers") with the
   'following:
   '
   'Set Rs = _
   'Db.OpenRecordset("SELECT * FROM Customers WHERE Country = 'UK';")


   'This loop will collect the field names and place them in the first
   'row starting at "A1"
   For i = 0 To Rs.Fields.Count - 1
      Ws.Cells(1, i + 1).Value = Rs.Fields(i).Name
   Next I

   'The next line simply formats the headers to bold font
   Ws.Range(Ws.Cells(1, 1), Ws.Cells(1, Rs.Fields.Count)).Font.Bold=True

   'The next line will get the data from the recordset and copy it
   'into the Worksheet (Sheet1).
   Ws.Range("A2").CopyFromRecordset Rs

   'This next code set will just select the data region and
   'auto-fit the columns
   Sheets("Sheet1").Select
   Range("A1").Select
   Selection.CurrentRegion.Select
   Selection.Columns.AutoFit
   Range("A1").Select

   Rs.Close
   Db.Close
End Sub
                

REFERENCES

For more information about Data Access, click the Index tab in Microsoft Excel Help, type the following text

data access in DAO


and then double-click the selected text to go to the "Accessing External Databases with DAO" topic.


Additional query words: OFF7 XL7 8.00 97 XL97 OFF97 XL

Keywords: kbdtacode kbhowto kbinterop kbprogramming KB146406