小計の作成
Contents
[
Hide
]
スプレッドシートで繰り返される値の小計を自動的に作成できます。 Aspose.Cells は、小計をプログラムでスプレッドシートに追加するのに役立つ API 機能を提供します。
Microsoft エクセルを使う
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"); |