MATLAB: Reading excel files with texts in matlab

importing excel data

I have an excel file with fields that are texts that I want to read.
X = xlsread('filename') reads the numbers, but does not read the texts. How to solve this problem?

Best Answer

if true
[X,T,c] = xlsread ('file_name');
end
Try this.