Using xlsread values from column P and forward

1 view (last 30 days)
I am reading an excel file using xlsread() function.
xlRange = 'B2:AV2';
result = xlsread(filename, sheet, xlRange);
When I print the result matrix I noticed the xlsread() is not returning expected results. The first elements in the result matrix (from range B2 to O2) are equal to the values in the Excel file. However, and strangely, values from range P2 to AV2 does not coincide with the values in the Excel file.
So I proceeded to do the following test
result = xlsread(filename, sheet, 'P2');
And when I print the result matrix, its value its completely different from the value in the Excel file.
Digging a little bit more, I found out that the value returned for P2 was not a random number, but the same as for C2. And subsequently, value requested for Q2 returns the value in D2 and so on.
P2 = C2
Q2 = D2
R2 = E2
...
I have been scratching my head for hours, any help would be much appreciated

Accepted Answer

ES
ES on 14 Jun 2018
Edited: Walter Roberson on 15 Jun 2018
What kind of data do you have in your excel file? xlsread can have three outputs, numbers, text and raw. Which of it are you using?
Becuase when you simply use
result = xlsread(filename, sheet, xlRange);
only the numbers in the range are read.
Use to read all contents
[num,txt,raw] = xlsread(___)
  1 Comment
Ricardo G
Ricardo G on 15 Jun 2018
You were right, the some of the data was pasted/imported as text, had to convert the cell type to number and the problem was fixed! Thank you!

Sign in to comment.

More Answers (0)

Tags

Products


Release

R2016a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!