-
Notifications
You must be signed in to change notification settings - Fork 48
Expand file tree
/
Copy pathCalculateFormulasSample.cs
More file actions
38 lines (32 loc) · 1.59 KB
/
CalculateFormulasSample.cs
File metadata and controls
38 lines (32 loc) · 1.59 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
/*************************************************************************************************
Required Notice: Copyright (C) EPPlus Software AB.
This software is licensed under PolyForm Noncommercial License 1.0.0
and may only be used for noncommercial purposes
https://polyformproject.org/licenses/noncommercial/1.0.0/
A commercial license to use this software can be purchased at https://epplussoftware.com
*************************************************************************************************
Date Author Change
*************************************************************************************************
01/27/2020 EPPlus Software AB Initial release EPPlus 5
*************************************************************************************************/
using System;
using System.Collections.Generic;
using System.Text;
namespace EPPlusSamples.FormulaCalculation
{
/// <summary>
/// Sample 17 demonstrates the formula calculation engine of EPPlus.
/// </summary>
static class CalculateFormulasSample
{
private static CalculateExistingWorkbook CalculateExistingWorkbook = new CalculateExistingWorkbook();
private static BuildAndCalculateWorkbook BuildAndCalculateWorkbook = new BuildAndCalculateWorkbook();
private static AddFormulaFunction AddFormulaFunction = new AddFormulaFunction();
public static void Run()
{
CalculateExistingWorkbook.Run();
BuildAndCalculateWorkbook.Run();
AddFormulaFunction.Run();
}
}
}