My work-around is to record a Macro in the Excel file (so you have to use .xlsm file extension) (first you will need to go to programs, windows powershell and type at prompt "Set-ExecutionPolicy RemoteSigned" (no quotes) to allow the script to run) :
Sub AutoUpdate()
'
' AutoUpdate Macro
' data refresh from MSQuery connection
'
Sheets("Feuill1").Select
Selection.ListObject.QueryTable.Refresh BackgroundQuery:=False
End Sub
Then i use a Powershell script that do the trick by : opening the Excel file, calling the macro, save and close the file.
In this example i make a copy of the original file for security/backup purpose, but of course you could save the original file itself.
$objectExcel = new-object -c excel.application
$objectExcel.displayAlerts = $false # don't prompt the user
#$objectExcel.visible = $True;
$Classeur = $objectExcel.workbooks.open("source_filepath", $null, $true)
$objectExcel.run("AutoUpdate")
# $objectExcel.run("RemoveODBC") # another custom macro for removing data connexion
$Classeur.saveas("destination_filepath")
$Classeur.close($false)
#$objectExcel.visible = $False;
$objectExcel.quit()
spps -n excel
So my Excel report is refreshed on a daily basis, without any manual intervention, by a Windows Planified task who called the above script.