Readtable extremely slow when excel file has formatting
Ältere Kommentare anzeigen
I'm having an issue with using readtable to read in an excel file. When I read in my excel file (which has formatting), the readtable command can take 30 minutes to read a single sheet. However, when I copied and pasted the values into a new excel sheet (no formatting), the command only took 10 s.
I've tried removing styles from the original workbook / sheet and clearing formatting, but oddly, the sheet still takes forever to process. Was wondering if anyone could explain to me why the original excel takes so long to process, but copying and pasting the values into a new sheet makes it so much faster to process.
FYI, I'm using Matlab2017a, although I had this problem with Matlab2016 as well.
1 Kommentar
ds
am 17 Mai 2019
Had exactly the same issue recently with Matlab2019a.
Antworten (1)
t = readtable('file.xlsx','basic',false)
5 Kommentare
JW
am 15 Aug. 2017
Jiro Doke
am 17 Aug. 2017
Sorry, I meant "set the basic property to TRUE".
t = readtable('file.xlsx','basic',true)
ANISH BYANJANKAR
am 20 Dez. 2018
This doesnt seem to work in R2018a
Bruce MacWilliams
am 17 Jun. 2019
I had the same problem (2019a), taking 3 minutes to read a relatively small data set. Setting 'basic' to true fixed it, same file takes about 0.5 seconds. Thanks.
Marguerite Kennish
am 16 Jul. 2020
The basic true method cut my time from 67 seconds to 22 seconds.
Kategorien
Mehr zu Data Import from MATLAB finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!