Introducing CalcEngine for .NET
The ComponentOne CalcEngine is a .NET Standard library that can be used on any platform for runtime parsing and evaluation of expressions.
This library is useful for:
- Parsing and evaluation of expressions (like Microsoft Excel).
- Calculating the sales projections or statistical calculations to find patterns in data.
- Loading data from business objects in-memory or into a DataGrid and show computed values.
- Evaluating algebraic expressions, mathematical functions, and formulas using variables.
CalcEngine is available for all .NET platforms within ComponentOne, and the library is available as NuGet package on nuget.org. You can get the samples by installing WinForms Edition.
In this article, we will walk through the major features of CalcEngine and show how they work.
Get Started Using CalcEngine
To start using CalcEngine, create a .NET Framework 4.6.2+ or a .NET Core application and add the C1.CalcEngine NuGet package to the project from nuget.org.
Creating Simple Expressions
Creating & evaluating expressions with CalcEngine is straight forward and familiar if you’ve ever used Excel. H ere we show how to create a simple expression assigned to the CalcEngine’s Expression property and how to use the Evaluate function to get the result.
CalcEngine also supports more complex expressions with functions. It supports text, datetime, math, logical, conversion & aggregate functions from Excel apart from various constants and operators.
For a complete list of supported functions, please refer to the documentation. If you want to add a custom function to the library you can do that using the AddFunction method.
Perform Calculations Across a Data Source with Data Binding
CalcEngine can be bound to data sources like lists, arrays, or a data table. This helps in performing calculations over the collection of objects and data fields. Here we have a collection of Store objects and use CalcEngine to apply expressions on the entire collection or a single object.
Working with Multiple Data Collections
When the information is spread across several collections, it becomes difficult to work with such data together. This is where cross-referencing can be helpful. The built-in Excel engine’s cross-sheet referencing can be used in such cases. In cross-sheet references, a cell reference includes a reference to a cell in another sheet.
Like Excel, it can be used in a formula wherein the name of the target worksheet is entered followed by an exclamation (!) before the cell reference or cell range reference.
calcEngine.Expression = "=Sum(Sheet1!A3:B7) + Sum(Sheet2!A3:B7)";
To be able to create expressions such as above each data source should derive from IDataSheet implementing the GetValue() function:
Here, the GetValue returns a value from a particular row or a column.
For the purpose of this article we demonstrate a simple data source that uses the SheetTable class implemented above:
Finally, cross-sheet expressions can be created as below:
An example of cross-sheet referencing is shown in the below image where expressions are parsed from cell references.
This sample is available with ComponentOne WinForms Edition:
ComponentOne CalcEngine is a powerful library that solves lots of business use cases. If you want any feature added to this library, please post a comment.