We can call a sheet using it's name or index by xlsread
function like this:
for i=1:100
file = xlsread(`filename.xlsx`,i)
%% I want get name of the called sheet here (storing in cell array)
end
In this loop if want call and extract the specified sheet name (using the index of sheet) as we can see in comment line of above loop and store the names in a cell array. How can I do this in MATLAB R2015a?