In an excel sheet, how can I extract the rows which contain a specific string data called (T1L2). this variable happens only in the second column (conditions). Thanks
Show older comments
I start with this commands:
[num,text,raw]=xlsread('filename.xlsx',1);
conditions=raw(:,2);
but then I don't know how to select the rows which contain the this word (T1L2) in their second column.
Accepted Answer
More Answers (0)
Categories
Find more on Cell Arrays in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!