Reading values corresponding to index
5 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Hi,
I am reading an excel xlsx file in MATLAB. I am reading the index from the file but also want to read the value in a column corresponding to that index. For example I am reading the index value 89792 but also want to read and display the corresponding value in column D highlighted in yellow.![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/524389/image.png)
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/524389/image.png)
8 Kommentare
the cyclist
am 21 Feb. 2021
I am hopeful that @Walter Roberson's answer below will help you figure it out. It's a good guess at the problem.
If not, maybe you could create a smaller version of your data file that shows the problem? For example, perhaps you could upload just the first few hundred rows of the Excel file, and code that tries to access an element.
Antworten (1)
Walter Roberson
am 21 Feb. 2021
Date_Time = T{89792,4}
is going to access row 89792 of the data table. That will not necessarily be the same as row 89792 of the .xlsx file. In particular, the rows that are considered to be headers will be skipped in the count.
If you cannot correct for that by subtracting the number of header lines from the indexing you use, then you should change from readtable() to readcell(), as readcell() will return all lines including headers.
0 Kommentare
Siehe auch
Kategorien
Mehr zu Spreadsheets finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!