如何使用數學函數
IronXL 是 Excel 中的一個強大工具,它支援如平均值、總和、最小值和最大值等數學聚合函數。 這些功能對於執行計算和分析數據至關重要。 使用 IronXL,您可以利用這些數學功能來獲得洞察力、做出明智的決策,並有效分析 Excel 中的數值數據,無需使用 Interop。
如何使用數學函數
- 下載用於使用彙總函數的C#庫
- 載入現有的 Excel 檔案
- 選擇要匯總的範圍、行或列
- 調用可用的數學函數,例如
Sum
、Avg
、Min
或Max
- 根據結果進行進一步的計算
開始使用IronXL
立即在您的專案中使用IronXL,並享受免費試用。
聚合函數示例
在 Excel 試算表中操作一系列單元格時,您可以使用各種匯總函數來執行計算。 以下是一些基本方法:
Sum()
方法計算選定範圍內單元格的總和。Avg()
方法用於確定選定範圍內單元格的平均值。Min()
方法用於識別所選範圍內的最小數值。-
Max()
方法用於尋找所選儲存格範圍內的最大數字。這些功能是分析數據和從您的Excel試算表中導出有意義見解的寶貴工具。
請注意
非數值將不會被包含在計算中。
:path=/static-assets/excel/content-code-examples/how-to/math-functions-math-functions.cs
using IronXL;
using System.Linq;
WorkBook workBook = WorkBook.Load("sample.xls");
WorkSheet workSheet = workBook.WorkSheets.First();
// Get range from worksheet
var range = workSheet["A1:A8"];
// Calculate the sum of numeric cells within the range
decimal sum = range.Sum();
// Calculate the average value of numeric cells within the range
decimal avg = range.Avg();
// Identify the maximum value among numeric cells within the range
decimal max = range.Max();
// Identify the minimum value among numeric cells within the range
decimal min = range.Min();
IRON VB CONVERTER ERROR developers@ironsoftware.com
為了更靈活,上述功能也可以應用於單個/多個行或列。 了解更多關於選擇行和列。