MATLAB: How do i read an excel file with differnt sheets in an easy way

importing excel dataxlsread

I need to structure up some execl files containing 4 diffrent sheets and i wondet how I in the most effective way does this.

Best Answer

xlsinfo can be used to find the name of the sheets or the number of sheets. After that you loop reading one sheet at a time.
Or if you already know the names of the sheets, just make four xlsread() calls passing in the appropriate sheet information.
Related Question