It would be easier to set your query up using the built-in tools, not VBA. It is NOT that you can't, as it seems at least one other answerer has misunderstood my point, it is just easier with the in-built, optimized, tools, and a lot faster to alter than continually copying your data elsewhere, escaping "", tracking back M language errors etc. You can then run that query via VBA.
You load your data via the appropriate method which can be from file, looping files in a folder, web, database.... the list goes on. You can import from external sources as well as load from internal. Have a look here for more information on loading from external sources.
Once you have secured your source and it is loaded you will be presented with the query editor where you can perform your transformation steps.
The point being that as you perform your steps using the UI, M code is written in the background and forms the basis of a re-usable query provided you don't change the source format or location. If you do, it is an easy edit to update the appropriate data source in the UI.
In your case, when you have performed your steps and have a query as you wish you then close and load to sheet2.
At this step, the first time you are setting this up you will select sheet 2 as your close and load destination:
![Close and load](https://i.stack.imgur.com/NntsQm.png)
NB: When you select existing sheet, ensure Sheet 2 already exists and you can manually edit Sheet2! in front of the suggested range.
You are experiencing issues because you keep trying to recreate all of this with code.
Don't. Set it up using the UI and load to sheet2. From then on, either open the query editor to edit the steps and/or refresh the query to load the existing sheet2 with new/refreshed data.
Some of the available methods for refreshing your query:
The query will be refreshed by VBA/Manual refreshes to the sheet it resides in (Sheet2), or to the workbook itself e.g. Sheet2.Calculate
, ThisWorkbook.RefreshAll
, manually pressing the refresh workbook button in the data tab (these are all overkill really)
![Refresh all tab](https://i.stack.imgur.com/4ruW9.png)
More targeted methods:
VBA for the query table in sheet 2:
ThisWorkbook.Worksheets("Sheet2").ListObjects(1).QueryTable.Refresh BackgroundQuery:=False
Change the above to the appropriate table etc.
Right clicking in the querytable itself and selecting refresh:
![Refresh](https://i.stack.imgur.com/B28cm.png)
Click on the refresh button in the workbook queries window on the right hand side for the query in question (icon with green circling arrows)
![Refresh](https://i.stack.imgur.com/EUreo.png)
The Ken Pulls VBA way (minor edit from me)
Option Explicit
Public Sub UpdatePowerQueries()
' Macro to update my Power Query script(s)
Dim lTest As Long, cn As WorkbookConnection
On Error Resume Next
For Each cn In ThisWorkbook.Connections
lTest = InStr(1, cn.OLEDBConnection.Connection, "Provider=Microsoft.Mashup.OleDb.1", vbTextCompare)
If Err.Number <> 0 Then
Err.Clear
Exit For
End If
If lTest > 0 Then cn.Refresh
Next cn
On Error GoTo 0
End Sub
There shouldn't be any real need for you to do all of this work via VBA. You may have some tricky data manipulation you feel more comfortable doing with VBA and then having PowerQuery access that processed data as source. You can fire off the whole lot by having a subroutine that calls the processing routine and then uses one of the VBA command methods listed above. There are more methods and I will add them when I have more time.
Calculations:
If you have calculations that depend on the PowerQuery output you have 4 obvious immediate options:
- Add these calculations where possible into PowerQuery. It supports calculated columns, user defined functions and lots more.
- Add the PowerQuery output to the data model and use the data model to perform calculations including calculated fields. This will give you access to time intelligence functions as well.
- Use VBA to add the calculations to the appropriate areas in sheet 2 if the range changes on refresh
- If range doesn't change on refresh simply put your formulas out of the way.