Reading data from google spreadsheet

31 vues (au cours des 30 derniers jours)
Sergio Silveira
Sergio Silveira le 16 Juin 2021
Réponse apportée : KSSV le 16 Juin 2021
Hello,
I'm reading data from a google spreadsheet file using the following code:
url_name = sprintf('https://docs.google.com/spreadsheets/d/%s/gviz/tq?tqx=out:csv&sheet=%s',docid);
sheet_data = webread(url_name);
where docid is the spreadsheet's identifier and sheet_data is a table type variable.
The problem is that the headers are all messed up (spaces between words are removed, special characters such as "ã, ç,ô,...", are ignored, and so on) and I'll need them further in the code.
This only occurs with the headers. The other cells in the spreadsheet that contain text are properly imported.
Is there a way to overcome these issues?
Thanks in advance.
  1 commentaire
Sergio Silveira
Sergio Silveira le 16 Juin 2021
Just found out a workaround:
url_name = strcat('https://docs.google.com/spreadsheets/d/',docid,'/export?format=xlsx');
websave('output.xlsx',url_name);
Then I read the output.xlsx file (which is formatted as I wish).

Connectez-vous pour commenter.

Réponses (1)

KSSV
KSSV le 16 Juin 2021

Catégories

En savoir plus sur Google dans Help Center et File Exchange

Produits


Version

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by