データの検索または検索

特定のデータを含む結果 Cells

Microsoft エクセルを使う

Microsoft Excel では、指定されたデータを含むワークシート内のセルをユーザーが検索できます。選択した場合編集から探すMicrosoft Excel のメニューをクリックすると、検索値を指定できるダイアログが表示されます。

ここでは、値「オレンジ」を探しています。 Aspose.Cells を使用すると、開発者は指定された値を含むワークシート内のセルを見つけることもできます。

Aspose.Cells を使用

Aspose.Cells はクラスを提供し、ワークブック、Microsoft Excel ファイルを表します。のワークブッククラスにはワークシートExcel ファイル内の各ワークシートにアクセスできるコレクション。ワークシートは、ワークシートクラス。のワークシートクラスはCellsワークシート内のすべてのセルを表すコレクション。のCellscollection には、ユーザー指定のデータを含むワークシート内のセルを検索するためのメソッドがいくつか用意されています。これらの方法のいくつかについて、以下で詳しく説明します。

数式を含む Cells の検索

開発者は、を呼び出してワークシート内の指定された数式を見つけることができます。Cellsコレクションの探す方法。通常、探すメソッドは 3 つのパラメーターを受け入れます。

  • **物体:**検索するオブジェクト。タイプは、int、double、DateTime、string、bool である必要があります。
  • **前のセル:**同じオブジェクトを持つ前のセル。最初から検索する場合、このパラメーターを null に設定できます。
  • FindOptions: 必要なオブジェクトを見つけるためのオプション。

以下の例では、検索方法を練習するためにワークシート データを使用しています。

// 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);

FindOptions を使用したデータまたは数式の検索

を使用して、指定された値を見つけることができます。Cellsコレクションの探すさまざまな方法検索オプション.通常、探すメソッドは次のパラメーターを受け入れます。

  • 検索値、検索するデータまたは値。
  • 前のセル、同じ値を含む最後のセル。最初から検索する場合、このパラメーターを null に設定できます。
  • オプションを探す、検索オプション。
// 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 ");
}

指定された文字列値または数値を含む Cells の検索

同じを呼び出すことで、指定された文字列値を見つけることができます探すで見つかったメソッドCells色々とコレクション検索オプション.

指定するFindOptions.LookInTypeFindOptions.LookAtTypeプロパティ。次のコード例は、これらのプロパティを使用して、さまざまな数の文字列を持つセルを検索する方法を示しています。始まりまたはで中心またはで終わりセルの文字列の。

// 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 ");
}

先行トピック