Azzera filtri
Azzera filtri

Import data from google sheets to matlab

131 visualizzazioni (ultimi 30 giorni)
Hüseyin Cagdas Yatkin
Hüseyin Cagdas Yatkin il 12 Dic 2019
Commentato: O.Hubert il 5 Giu 2024
Hello guys,
I wanted to import data from google sheets to matlab. However I couldn't find any information about it. Since the google sheets always geting update I can't just copy and paste so I wanted to import new data for every time I run the matlab script. Is there a way?
Thanks in advance.

Risposte (3)

Donald
Donald il 4 Mar 2021
First, find the ID for your Sheet. It's the long string if you look at the URL. For example,
http s://docs.google.com/spreadsheets/d/bladjaljd77442n2j3ljk2j3j2jdkdjad/edit#gid=1498695871
Then it's easy
ID = 'bladjaljd77442n2j3ljk2j3j2jdkdjad'
sheet_name = 'My Sheet';
url_name = sprintf('https://docs.google.com/spreadsheets/d/%s/gviz/tq?tqx=out:csv&sheet=%s',...
ID, sheet_name);
sheet_data = webread(url_name);
  5 Commenti
thierry Lanoe
thierry Lanoe il 25 Mar 2023
is there a solution with "protected sheets"
O.Hubert
O.Hubert il 5 Giu 2024
Bennet, have you tried passing the ContentType option to webread (see the help here)?

Accedi per commentare.


Hiro Yoshino
Hiro Yoshino il 12 Dic 2019
  1 Commento
Hüseyin Cagdas Yatkin
Hüseyin Cagdas Yatkin il 12 Dic 2019
I think this is for the offline files, I want to take from online source which is specifically google sheets.

Accedi per commentare.


dimuthu chathuranga
dimuthu chathuranga il 9 Apr 2021
I have same problem please help me I want to real time uptade data fron google sheet to mathlab gui

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by