Can readtable read variable opt in a loop?
3 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
chlor thanks
il 31 Mar 2020
Commentato: chlor thanks
il 7 Apr 2020
I have a lot of xlsm files to process.
Essentially I have a loop that searched for sheet name and column name that satisfies certain criteria and retrieve and store the sheet name and column, for example in a particular loop, perhaps,
SheetName = “1”; Col = “BH”;
Can I set these variable as options to readtable?
0 Commenti
Risposta accettata
Walter Roberson
il 31 Mar 2020
Yes.
'sheet' and 'range' are both valid for "spreadsheet" (.xls, .xlsx) files
3 Commenti
Walter Roberson
il 31 Mar 2020
Yes xlsm too.
Sheetname="1"; Col="BH" ;
readtable('YourFile.xlsm','sheet',Sheetname,'range',Col)
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Spreadsheets in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!