you can download the sheet and create a linked table.
or use Excel to transform the data from google sheet and create a
linked table from the Excel workbook.
you can download the sheet and create a linked table.
or use Excel to transform the data from google sheet and create a
linked table from the Excel workbook.
if you Transform the data to macro-enabled excel, you can have a
vba to Refresh the data:
Code:
Sub RefreshQueryTable()
Dim ws As Worksheet
Set ws = ThisWorkbook.Sheets("Sheet1") ' Change "Sheet1" to your sheet's name
Dim qt As QueryTable
For Each qt In ws.QueryTables
qt.Refresh BackgroundQuery:=False
Next qt
End Sub