Google sheet as data source

Les Isaacs

Registered User.
Local time
Today, 19:26
Joined
May 6, 2008
Messages
186
Hi all - does anyone know how to use a Google sheet as a data source for a local accdb?
 
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.
 
Seems like there are several commercial ODBC-Drivers available for Google Sheets. Simply search for: google sheets odbc connection.
 
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.
Hi - I need the link to be dynamic, so that the data in the accdb updates as the data in the Google sheet is amended.
 
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
 

Users who are viewing this thread

Back
Top Bottom