Home |
Search |
Today's Posts |
#1
![]() |
|||
|
|||
![]()
I have a query in Access that is linked to Excel. The query produces more records each month. However the Excel linked data only shows the number of records which i could originally see when I did the paste special and "link".
|
#2
![]() |
|||
|
|||
![]()
A better method of bringing data from Access into Excel would be to use
Data / Import External Data / New Database Query. Alternatively you could clear the current table and repeat the process you used previously to get the linked data. Bill Manville MVP - Microsoft Excel, Oxford, England No email replies please - respond to newsgroup |
#3
![]() |
|||
|
|||
![]() Quote:
|
#4
![]() |
|||
|
|||
![]()
I think you would have to mark the queries as not running on startup
and then have a startup macro that runs them. Sub Auto_Open() Dim WS As Worksheet Dim QT As QueryTable For Each WS In ThisWorkbook.Worksheets For Each QT In WS.QueryTables QT.Refresh BackgroundQuery:=False Next Next End Sub Bill Manville MVP - Microsoft Excel, Oxford, England No email replies please - respond to newsgroup |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Input boxes in excel and MS Query | Excel Discussion (Misc queries) | |||
Send Excel data to Access through button | Excel Discussion (Misc queries) | |||
Micosoft Query does not export result set to excel | Excel Worksheet Functions | |||
MS Excel data reading in MS Access | Excel Discussion (Misc queries) | |||
Link Access query to refresh an EXCEL file | New Users to Excel |