Hello Everyone , I am trying to read certain column , from Multisheet Excel, which I am using as input for my Calculation
opts = detectImportOptions('Fatigue_life_input.xlsx','Sheet','Input Data','NumHeaderLines',1);
opts.VariableNames = 'Values';
datos = readtable('Fatigue_life_input.xlsx',opts)
Here I am trying to read , Sheet name : Input Data from Filename Fatigue_life_input and I want to read Numeric values which is column 2 . But instead of that it is read column 1.
This is my Input file is excel , I am trying to read only values section
And this is what i am getting in MATLAB.