Can't open a range of a .csv excel file in Matlab online version
2 views (last 30 days)
Show older comments
Cyprien Nshimiyimana
on 15 Nov 2021
Commented: Cyprien Nshimiyimana
on 15 Nov 2021
I am using Matlab online version. It seems though that I can use the "xlsread" function to open a range of .csv excel file.
M = xlsread('ratings.csv','A2:C100837');
Error: Warning: Range cannot be used in 'basic' mode. The entire sheet will be loaded.
How can I solve this please?
1 Comment
Mathieu NOE
on 15 Nov 2021
hello
so what do you get if you load the entire sheet ?
can't you do the needed data extraction from there ?
Accepted Answer
Cris LaPierre
on 15 Nov 2021
Edited: Cris LaPierre
on 15 Nov 2021
Basic mode means you are using xlsread without having access to Excel. That is the case with MATLAB Online, and is mentioned in the documentation:
" If your computer does not have Excel for Windows® or if you are using MATLAB® Online™, xlsread automatically operates in basic import mode".
"Range selection is not supported when reading XLS files in basic mode."
The soluion is to use one of the functions recommended at the top of the xlsread documentation page: readtable, readmatrix or readcell. If your data is all of the same data type, I would use readmatrix. Try this.
M = readmatrix("ratings.csv","Range",'A2:C100837');
More Answers (0)
See Also
Categories
Find more on Spreadsheets in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!