Trova o cerca dati
Trovare Cells contenente dati specificati
Utilizzando Microsoft Excel
Microsoft Excel consente agli utenti di trovare celle in un foglio di lavoro che contiene dati specifici. Se selezioniModificare dalTrova menu in Microsoft Excel, verrà visualizzata una finestra di dialogo in cui è possibile specificare il valore di ricerca.
Qui stiamo cercando il valore “Arance”. Aspose.Cells consente inoltre agli sviluppatori di trovare celle nel foglio di lavoro contenenti valori specificati.
Utilizzando Aspose.Cells
Aspose.Cells offre un corso,Cartella di lavoro , che rappresenta un file Excel Microsoft. IlCartella di lavoro la classe contiene unFogli di lavoro raccolta che consente l’accesso a ciascun foglio di lavoro nel file Excel. Un foglio di lavoro è rappresentato daFoglio di lavoro classe. IlFoglio di lavoro la classe fornisce aCells raccolta che rappresenta tutte le celle del foglio di lavoro. IlCellscollection fornisce diversi metodi per trovare celle in un foglio di lavoro contenente dati specificati dall’utente. Alcuni di questi metodi sono discussi di seguito in modo più dettagliato.
Trovare Cells contenente una formula
Gli sviluppatori possono trovare una formula specificata nel foglio di lavoro chiamando il metodoCells della collezioneTrova metodo. Tipicamente, ilTrovametodo accetta tre parametri:
- **Oggetto:**L’oggetto da cercare. Il tipo deve essere int,double,DateTime,string,bool.
- **Cella precedente:**Cella precedente con lo stesso oggetto. Questo parametro può essere impostato su null se si esegue la ricerca dall’inizio.
- FindOptions: Opzioni per trovare l’oggetto richiesto.
Gli esempi seguenti utilizzano i dati del foglio di lavoro per esercitarsi con i metodi di ricerca:
// For complete examples and data files, please go to https://github.com/aspose-cells/Aspose.Cells-for-.NET | |
// Opening the Excel file | |
Workbook workbook = new Workbook(sourceDir + "sampleFindingCellsContainingFormula.xlsx"); | |
// Accessing the first worksheet in the Excel file | |
Worksheet worksheet = workbook.Worksheets[0]; | |
// Instantiate FindOptions Object | |
FindOptions findOptions = new FindOptions(); | |
findOptions.LookInType = LookInType.Formulas; | |
// Finding the cell containing the specified formula | |
Cell cell = worksheet.Cells.Find("=SUM(A5:A10)", null, findOptions); | |
// Printing the name of the cell found after searching worksheet | |
System.Console.WriteLine("Name of the cell containing formula: " + cell.Name); |
Trovare dati o formule utilizzando FindOptions
È possibile trovare i valori specificati utilizzando ilCells della collezioneTrova metodo con variTrovaOpzioni . Tipicamente, ilTrovametodo accetta i seguenti parametri:
- Valore di ricerca, i dati o il valore da ricercare.
- Cella precedente, l’ultima cella che conteneva lo stesso valore. Questo parametro può essere impostato su null durante la ricerca dall’inizio.
- Trova le opzioni, le opzioni di ricerca.
// For complete examples and data files, please go to https://github.com/aspose-cells/Aspose.Cells-for-.NET | |
// Instantiate the workbook object | |
Workbook workbook = new Workbook(sourceDir + "sampleFindingDataOrFormulasUsingFindOptions.xlsx"); | |
workbook.CalculateFormula(); | |
// Get Cells collection | |
Cells cells = workbook.Worksheets[0].Cells; | |
// Instantiate FindOptions Object | |
FindOptions findOptions = new FindOptions(); | |
// Create a Cells Area | |
CellArea ca = new CellArea(); | |
ca.StartRow = 8; | |
ca.StartColumn = 2; | |
ca.EndRow = 17; | |
ca.EndColumn = 13; | |
// Set cells area for find options | |
findOptions.SetRange(ca); | |
// Set searching properties | |
findOptions.SearchBackward = false; | |
findOptions.SearchOrderByRows = true; | |
// Set the lookintype, you may specify, values, formulas, comments etc. | |
findOptions.LookInType = LookInType.Values; | |
// Set the lookattype, you may specify Match entire content, endswith, starwith etc. | |
findOptions.LookAtType = LookAtType.EntireContent; | |
// Find the cell with value | |
Cell cell = cells.Find(341, null, findOptions); | |
if (cell != null) | |
{ | |
Console.WriteLine("Name of the cell containing the value: " + cell.Name); | |
} | |
else | |
{ | |
Console.WriteLine("Record not found "); | |
} |
Ricerca di Cells contenente il valore o il numero di stringa specificato
È possibile trovare i valori di stringa specificati chiamando lo stessoTrova metodo trovato nelCells collezione con variTrovaOpzioni.
Specificare laFindOptions.LookInType eFindOptions.LookAtType proprietà. Il codice di esempio seguente illustra come utilizzare queste proprietà per trovare celle con un numero diverso di stringhe in corrispondenza diinizio o alcentro o alfine della stringa della cella.
// For complete examples and data files, please go to https://github.com/aspose-cells/Aspose.Cells-for-.NET | |
// The path to the documents directory. | |
string dataDir = RunExamples.GetDataDir(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType); | |
// Instantiate the workbook object | |
Workbook workbook = new Workbook(dataDir + "book1.xls"); | |
// Get Cells collection | |
Cells cells = workbook.Worksheets[0].Cells; | |
FindOptions opts = new FindOptions(); | |
opts.LookInType = LookInType.Values; | |
opts.LookAtType = LookAtType.EntireContent; | |
// Find the cell with the input integer or double | |
Cell cell1 = cells.Find(205, null, opts); | |
if (cell1 != null) | |
{ | |
Console.WriteLine("Name of the cell containing the value: " + cell1.Name); | |
} | |
else | |
{ | |
Console.WriteLine("Record not found "); | |
} | |
// Find the cell with the input string | |
Aspose.Cells.Cell cell2 = cells.Find("Items A", null, opts); | |
if (cell2 != null) | |
{ | |
Console.WriteLine("Name of the cell containing the value: " + cell2.Name); | |
} | |
else | |
{ | |
Console.WriteLine("Record not found "); | |
} | |
// Find the cell containing with the input string | |
opts.LookAtType = LookAtType.Contains; | |
Cell cell3 = cells.Find("Data", null, opts); | |
if (cell3 != null) | |
{ | |
Console.WriteLine("Name of the cell containing the value: " + cell3.Name); | |
} | |
else | |
{ | |
Console.WriteLine("Record not found "); | |
} |