Veri Bul veya Ara
Belirtilen Verileri İçeren Cells’i Bulma
Microsoft Excel’i kullanma
Microsoft Excel, kullanıcıların bir çalışma sayfasında belirtilen verileri içeren hücreleri bulmasına olanak tanır. eğer seçersenDüzenlemek danBulmak Microsoft Excel’deki menü, arama değerini belirtebileceğiniz bir iletişim kutusu göreceksiniz.
Burada “Portakal” değerini arıyoruz. Aspose.Cells, geliştiricilerin çalışma sayfasında belirtilen değerleri içeren hücreleri bulmasına da olanak tanır.
Aspose.Cells’i kullanma
Aspose.Cells bir sınıf sağlar,Çalışma kitabı , bu bir Microsoft Excel dosyasını temsil eder. buÇalışma kitabı sınıf bir içerirçalışma sayfaları Excel dosyasındaki her çalışma sayfasına erişim sağlayan koleksiyon. Bir çalışma sayfası şununla temsil edilir:Çalışma kağıdı sınıf. buÇalışma kağıdı sınıf bir sağlarCells çalışma sayfasındaki tüm hücreleri temsil eden koleksiyon. buCellstoplama, kullanıcı tanımlı verileri içeren bir çalışma sayfasındaki hücreleri bulmak için çeşitli yöntemler sağlar. Bu yöntemlerden birkaçı aşağıda daha ayrıntılı olarak ele alınmıştır.
Bir Formül İçeren Cells’i Bulmak
Geliştiriciler, çalışma sayfasında belirli bir formülü arayarak bulabilirler.Cells koleksiyonunBulmak yöntem. Tipik olarak,Bulmakyöntem üç parametre kabul eder:
- **Nesne:**Aranacak nesne. Tür int,double,DateTime,string,bool olmalıdır.
- **Önceki hücre:**Aynı nesneye sahip önceki hücre. Baştan arama yapılıyorsa bu parametre null olarak ayarlanabilir.
- FindOptions: Gerekli nesneyi bulma seçenekleri.
Aşağıdaki örnekler, bulma yöntemlerini uygulamak için çalışma sayfası verilerini kullanır:
// 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 kullanarak Veri veya Formül Bulma
kullanarak belirtilen değerleri bulmak mümkündür.Cells koleksiyonunBulmak yöntem ile çeşitliSeçenekleri Bul . Tipik olarak,Bulmakyöntem aşağıdaki parametreleri kabul eder:
- arama değeri, aranacak veri veya değer.
- Önceki hücre, aynı değeri içeren son hücre. Bu parametre, baştan arama yapılırken null olarak ayarlanabilir.
- Seçenekleri bul, bulma seçenekleri.
// 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 "); | |
} |
Belirtilen Dizi Değerini veya Numarasını İçeren Cells’i Bulma
Aynı dizeyi çağırarak belirtilen dize değerlerini bulmak mümkündür.Bulmak bulunan yöntemCells koleksiyonu ile çeşitliSeçenekleri Bul.
belirtinFindOptions.LookInType veFindOptions.LookAtType özellikler. Aşağıdaki örnek kod, bu özelliklerin, belirli sayıda dizeye sahip hücreleri bulmak için nasıl kullanılacağını göstermektedir.başlangıç ya damerkez ya dason hücre dizisinin.
// 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 "); | |
} |