Why is "readtable" taking dimensions from first sheet in excel when using "opts"?
6 次查看(过去 30 天)
显示 更早的评论
MathWorks Support Team
2024-11-18,0:00
回答: MathWorks Support Team
about 20 hours 前
Why is "readtable" using the dimensions of the first sheet in excel when I trying to get data from another sheet?
For example, if the first sheet has 10 rows and 3 columns, second sheet has 15 rows and 7 columns. When I use "readtable" and use "opts" to read all the data from second sheet in "char" format, the output has only 10 rows and 3 columns of the data from second sheet.
Why does this not happen when I don't use "opts" to set import options?
Here is an example code:
eqdFile = 'JUNK2.xlsx';
opts = detectImportOptions(eqdFile);
opts = setvartype(opts,'char');
T = readtable(eqdFile,opts,'Sheet','NameOfSheet')
采纳的回答
MathWorks Support Team
2024-11-18,0:00
This is an intended behavior. If you do not provide the information about the sheet you want to import data from in the import options, it takes the size of the first sheet.
The following change in the code will resolve this issue:
eqdFile = 'JUNK2.xlsx';
opts = detectImportOptions(eqdFile,'Sheet','NameOfSheet');
opts = setvartype(opts,'char');
T = readtable(eqdFile,opts)
Here, the name of the sheet to import from is mentioned in "detectImportOptions" using the 'Sheet' argument.
If import options ("opts") is not used, "readtable" can get the size of the sheet you are trying to import from correctly and does not default to the size data in the first sheet.
Here is an example to import data from .XLSX file without using "opts":
eqdFile = 'JUNK2.xlsx';
T = readtable(eqdFile,'Sheet','NameOfSheet')
0 个评论
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Spreadsheets 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!