Encuentre valor en Cells usando Aspose.Cells
Contents
[
Hide
]
Aspose.Cells - Buscar valor en Cells
En Microsoft Excel, los usuarios pueden buscar celdas que contengan datos específicos. Por ejemplo, hacer clic enEditary luegoEncontrarabre el cuadro de diálogo Buscar. Los usuarios ingresan un valor y hacen clicDE ACUERDOpara buscarlo Excel resalta los campos coincidentes.
Java
//Instantiating a Workbook object
Workbook workbook = new Workbook("workbook.xls");
//Accessing the first worksheet in the Excel file
Worksheet worksheet = workbook.getWorksheets().get(0);
//Finding the cell containing the specified formula
Cells cells = worksheet.getCells();
//Instantiate FindOptions
FindOptions findOptions = new FindOptions();
//Finding the cell containing a string value that starts with "Or"
findOptions.setLookAtType(LookAtType.START_WITH);
Cell cell = cells.find("SH",null,findOptions);
//Printing the name of the cell found after searching worksheet
System.out.println("Name of the cell containing String: " + cell.getName());
Descargar código de ejecución
Descargar código de muestra
Para más detalles, visiteBuscar o buscar datos.