Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Using XL97 and MSQuery to mine a database of about 1000 Tables and who knows
how many Fields. Does anybody know how to print or export a list of all the Tables and their respective Fields? Any help would be much appreciated. TIA Vaya con Dios, Chuck, CABGx3 |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I have done something similar but with fewer tables, so I hope this helps you
out I use a line of code that copies the Field names to a worksheet in excel but you have to connect to the database using a ADODB Connection. This is the line of code I used. If you would like to see other parts of the code let me know. For Col = 0 To Recordset.Fields.Count - 1 Sheets("List").Range("A1").Offset(0, Col).Value = Recordset.Fields(Col).Name Next "CLR" wrote: Using XL97 and MSQuery to mine a database of about 1000 Tables and who knows how many Fields. Does anybody know how to print or export a list of all the Tables and their respective Fields? Any help would be much appreciated. TIA Vaya con Dios, Chuck, CABGx3 |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
add option in pivot tables to remove subtotals for fields | Excel Worksheet Functions | |||
Help: pivot chart data in secured Access database wont show fields | Charts and Charting in Excel | |||
Not including blank fields in pivot tables | Excel Worksheet Functions | |||
Pivot Tables - Variance and % Variance fields | Excel Discussion (Misc queries) | |||
Pivot Tables multiple data fields | Excel Worksheet Functions |