xlsread error: Array indices must be positive integers or logical values.

4 views (last 30 days)
When I try to use xlsread to read the attached Excel file:
[A B C] = xlsread('AA.xlsx');
Why do I keep getting this error? It seems the problem is the last column, but why?
Error using xlsread (line 257)
Array indices must be positive integers or logical values.
Many thanks!

Accepted Answer

Star Strider
Star Strider on 4 Jun 2019
I was able to read your file without error.
However, if you have R2013b or lalter release, the readtable (link) function is likely the best option for your file:
AA_Table = readtable('AA.xlsx')
  5 Comments

Sign in to comment.

More Answers (1)

Leon
Leon on 4 Jun 2019
Thanks all for the replies. I'm using Excel Version 16.25 on MacOS 10.14.5

Categories

Find more on Data Import from MATLAB in Help Center and File Exchange

Tags

Products


Release

R2019a

Community Treasure Hunt

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

Start Hunting!