البحث عن البيانات باستخدام القيم الأصلية
Contents
[
Hide
]
بعض الأحيان يتم إخفاء قيمة البيانات لأنها مهيأة بطريقة ما. على سبيل المثال ، نفترض أن الخلية D4 تحتوي على الصيغة =Sum(A1:A2) وقيمتها 20 لكنها تم تهيئتها على شكل — ، ثم يتم إخفاء القيمة 20 ولا يمكن العثور عليها باستخدام خيارات البحث في Microsoft Excel. ومع ذلك ، يمكنك العثور عليها باستخدام Aspose.Cells for Python via .NET باستخدام LookInType.ORIGINAL_VALUES.
الشيفرة العينية التالية توضح النقطة السابقة. إنها تجد الخلية D4 التي لا يمكن العثور عليها باستخدام خيارات البحث في Microsoft Excel ولكن يمكن لـ Aspose.Cells العثور عليها باستخدام LookInType.ORIGINAL_VALUES. يرجى قراءة التعليقات داخل الشيفرة لمزيد من المعلومات.
كود Python للبحث عن البيانات باستخدام القيم الأصلية
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from aspose.cells import FindOptions, LookAtType, LookInType, Workbook | |
# For complete examples and data files, please go to https:# github.com/aspose-cells/Aspose.Cells-for-.NET | |
# The path to the documents directory. | |
dataDir = RunExamples.GetDataDir(".") | |
# Create workbook object | |
workbook = Workbook() | |
# Access first worksheet | |
worksheet = workbook.worksheets[0] | |
# Add 10 in cell A1 and A2 | |
worksheet.cells.get("A1").put_value(10) | |
worksheet.cells.get("A2").put_value(10) | |
# Add Sum formula in cell D4 but customize it as --- | |
cell = worksheet.cells.get("D4") | |
style = cell.get_style() | |
style.custom = "---" | |
cell.set_style(style) | |
# The result of formula will be 20 but 20 will not be visible because the cell is formated as --- | |
cell.formula = "=Sum(A1:A2)" | |
# Calculate the workbook | |
workbook.calculate_formula() | |
# Create find options, we will search 20 using original values otherwise 20 will never be found because it is formatted as --- | |
options = FindOptions() | |
options.look_in_type = LookInType.ORIGINAL_VALUES | |
options.look_at_type = LookAtType.ENTIRE_CONTENT | |
foundCell = None | |
obj = 20 | |
# Find 20 which is Sum(A1:A2) and formatted as --- | |
foundCell = worksheet.cells.find(obj, foundCell, options) | |
# Print the found cell | |
print(foundCell) | |
# Save the workbook | |
workbook.save(dataDir + "output_out.xlsx") |
الناتج على واجهة الأوامر الناتجة عن الكود المثال
فيما يلي مخرجات وحدة الإدخال الخاصة بالكود المصدري أعلاه.
Aspose.Cells.Cell [ D4; ValueType : IsNumeric; Value : ---; Formula:=SUM(A1:A2)]