创建小计
Contents
[
Hide
]
您可以为电子表格中的任何重复值自动创建小计。 Aspose.Cells 提供 API 功能,可帮助您以编程方式将小计添加到电子表格。
使用 Microsoft Excel
要在 Microsoft Excel 中添加小计:
- 在工作簿的第一个工作表中创建一个简单的数据列表(如下图所示),并将文件保存为Book1.xls。
- 选择列表中的任何单元格。
- 来自数据菜单,选择小计.将显示小计对话框。定义要使用的函数以及放置小计的位置。
使用 Aspose.Cells API
Aspose.Cells提供了一个类,工作簿,代表一个 Microsoft Excel 文件。这工作簿类包含一个工作表允许访问 Excel 文件中每个工作表的集合。
工作表由工作表班级。该类提供了广泛的属性和方法来管理工作表和其他对象。每个工作表由一个Cells收藏。要将小计添加到工作表,请使用Cells班级'小计方法。向该方法提供参数值以指定应如何计算和放置小计。
在下面的示例中,我们使用 Aspose.Cells API 将小计添加到模板文件 (Book1.xls) 的第一个工作表。执行代码时,将创建一个包含小计的工作表。
下面的代码片段显示了如何将小计添加到包含 Aspose.Cells for .NET 的工作表中。
This file contains 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
// 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 a new workbook | |
// Open the template file | |
Workbook workbook = new Workbook(dataDir + "book1.xls"); | |
// Get the Cells collection in the first worksheet | |
Cells cells = workbook.Worksheets[0].Cells; | |
// Create a cellarea i.e.., B3:C19 | |
CellArea ca = new CellArea(); | |
ca.StartRow = 2; | |
ca.StartColumn = 1; | |
ca.EndRow = 18; | |
ca.EndColumn = 2; | |
// Apply subtotal, the consolidation function is Sum and it will applied to | |
// Second column (C) in the list | |
cells.Subtotal(ca, 0, ConsolidationFunction.Sum, new int[] { 1 }); | |
// Save the excel file | |
workbook.Save(dataDir + "output.out.xls"); |