-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathFormulaCalculation.cs
More file actions
28 lines (25 loc) · 888 Bytes
/
FormulaCalculation.cs
File metadata and controls
28 lines (25 loc) · 888 Bytes
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
using EPPlusSamples.FormulaCalculation;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace EPPlusSamples
{
public static class FormulaCalculationSample
{
public static void Run()
{
//Sample 6 Calculate - Shows how to calculate formulas in the workbook.
Console.WriteLine("Sample 6.1 - Calculate formulas");
CalculateFormulasSample.Run();
Console.WriteLine("Sample 6.1 created {0}", FileUtil.OutputDir.Name);
Console.WriteLine();
Console.WriteLine("Sample 6.2 - Dynamic array formulas");
UsingArrayformulas.Run();
DynamicArrayFromTableWithChart.Run();
Console.WriteLine("Sample 6.2 created {0}", FileUtil.OutputDir.Name);
Console.WriteLine();
}
}
}