Find a particular value in an Excel sheet (Activex or xlsread?)
3 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
James Boyle
el 1 de Ag. de 2017
Comentada: James Boyle
el 1 de Ag. de 2017
I'm looking for a way to find the location of a specific element inside an Excel sheet, for example, I need my code to search the sheet for '31.5 Hz' and then output that this is found in cell J27, or wherever. I can't seem to find a simple way of doing this. Any help appreciated! (Windows 10, R2016a)
0 comentarios
Respuesta aceptada
Ganesh Hegade
el 1 de Ag. de 2017
You can get the index below way.
[~,txt,~] = xlsread('Filename');
[row,col] = find(cellfun('length',regexp(txt,'31.5 Hz')) == 1);
Más respuestas (0)
Ver también
Categorías
Más información sobre ActiveX en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!