Respective matrices for different sheets in imported file frin excel

2 vues (au cours des 30 derniers jours)
JL
JL le 3 Juin 2020
Commenté : JL le 3 Juin 2020
I have 3 sheets in the 'scheduling.xlsx', with roomTable(sheet 1), contentTable (sheet 2), uniqueTable(sheet 3)
filename = 'scheduling.xlsx';
roomTable = readtable(filename)
Using the code above, I can only see roomTable but not the rest when I use this method
contentTable = readtable(filename,2);
uniqueTable = readtable(filename,3);

Réponse acceptée

Stephan
Stephan le 3 Juin 2020
Modifié(e) : Stephan le 3 Juin 2020
contentTable = readtable(filename,'sheet',2);
uniqueTable = readtable(filename,'sheet',3);

Plus de réponses (0)

Catégories

En savoir plus sur Data Import from MATLAB dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by