About 9,120,000 results
Open links in new tab
  1. Silently refresh Excel file stored in SharePoint library using Office ...

    Nov 23, 2023 · 0 I have many Excel files stored in a SharePoint library (containing client data, 1 workbook per client), each with their own parameterized Power Query that extracts data from …

  2. How do I refresh an Excel Power Query using Power Automate …

    Jun 8, 2022 · In Excel: Open the pivot table options and select "Refresh data on file open". Refresh Data On the worksheet with your pivot table (s), create a table in a cell that has similar …

  3. Refresh Excel External Data with Python - Stack Overflow

    Nov 30, 2016 · Internally, Excel can use multiple threads, over multiple processors. If you have a complex spreadsheet, it will even show the number of processors in use when recalculating. …

  4. vba - How to wait until ActiveWorkbook.RefreshAll finishes before ...

    After my macro refresh's the data that Excel is getting, I added into my macro the line "Calculate" (normally used to recalculate the workbook if you have set calculation to manual).

  5. excel - How to refresh Power Query using VBA? - Stack Overflow

    Jun 28, 2022 · In MyFile.xlsx. 'Refresh' macro is located in other Workbook which serves as a global refresher, I refresh various Excel files from that global Workbook.

  6. PowerShell script to open excel, wait for power query to refresh, …

    Jul 22, 2020 · So I enabled the setting within excel to Refresh data when opening the file. So I am trying to create a PowerShell script which open the excel, waits for the query to refresh, and …

  7. Excel - Power query data refresh via Python - Stack Overflow

    Oct 9, 2017 · I was trying to refresh a power query - external data in Excel via Python using following code import win32com.client import time xl = …

  8. Auto refresh Excel Power Query when a particular cell changes (I …

    Aug 19, 2020 · 1 I am importing an Access database into an Excel workbook. I want to filter the table I am importing automatically based on the value of a cell in the Excel worksheet. I have …

  9. excel - Auto-updating Power Query Connection via VBA - Stack …

    Apr 28, 2016 · If you refresh all connections via a loop, you cannot control the order in which this happens. If you need control of the sequence, or if you need to refresh just a couple of Power …

  10. vba - Refresh All Queries in Workbook - Stack Overflow

    Jul 17, 2015 · Option Explicit Public Sub RefreshQueries() Dim wks As Worksheet Dim qt As QueryTable For Each wks In Worksheets For Each qt In wks.QueryTables qt.Refresh …