Searching particular string in an excel spreadsheet

3 visualizaciones (últimos 30 días)
Ghenji
Ghenji el 6 de Abr. de 2018
Editada: Ghenji el 9 de Abr. de 2018
What are the options other than 'Range.Find' to search for a string in a spreadsheet? Am using actxserver('Excel.Application'). 'Range.Find' does not help since it start to look from first letter of the string and stops there. For ex. am looking for a string 'Jimmy'. Find would look everything row by row starting with J. if it finds 'John' it shall stop right there. How to make it look for complete string?

Respuesta aceptada

Ghenji
Ghenji el 9 de Abr. de 2018
Editada: Ghenji el 9 de Abr. de 2018
This worked for me.
Range.Find('String', [], [], 1)
Since the position for LookAt is 4th and I need xlWhole. xlWhole = 1; xlPart = 2;

Más respuestas (1)

Image Analyst
Image Analyst el 6 de Abr. de 2018
How about hauling it into MATLAB with xlsread() and search each cell for the string with strfind()?
  1 comentario
Ghenji
Ghenji el 6 de Abr. de 2018
well am loading all the the parameters using excel.application. Going back to xlsread() would be long road and further even after using strfind() i will have to move back to to excel.application since I want read the data labelled with some color.

Iniciar sesión para comentar.

Categorías

Más información sobre Use COM Objects in MATLAB 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!

Translated by