Search Results for

    Show / Hide Table of Contents

    ExcelFile.RecalcExpression Method

    Overloads

    • ExcelFile.RecalcExpression(String)
    • ExcelFile.RecalcExpression(String, Boolean)

    ExcelFile.RecalcExpression(String)

    Calculates the value of any formula and returns the result. The expression must be a valid Excel formula, it must start with "=", and cell references that don't specify a sheet (like for example "=A2") will refer to the active sheet. Cells used by the formula will be recalculated as needed too.

    You can use this method as a simple calculator, or to calculate things like the sum of a range of cells in the spreadsheet. Look at the example for more information on how to use it.

    Note that we will consider the expression to be located in the cell A1 of the Active sheet. So for example "=ROW()" will return 1, and "=A2" will return the value of A2 in the active sheet.

    Syntax

    Namespace: FlexCel.Core

    public Object RecalcExpression(String expression)

    Parameters

    <-> Parameter Type Description
    expression String Formula to evaluate. It must start with "=" and be a valid Excel formula.

    Returns

    The value of the calculated formula.

    Examples

    To calculate the sum of all the cells in column A of the sheet "Data", you can use the following code:

        ExcelFile xls = new XlsFile("myfile.xls", true);
        xls.ActiveSheetByName = "Data";
        Double Result = Convert.ToDouble(xls.RecalcExpression("=Sum(A:A)"));
    

    To calculate a simple expression, you can use:

        return (double)xls.RecalcExpression("=1 + 2 * 3");
    

    See also

    • ExcelFile

    ExcelFile.RecalcExpression(String, Boolean)

    Calculates the value of any formula and returns the result. The expression must be a valid Excel formula, it must start with "=", and cell references that don't specify a sheet (like for example "=A2") will refer to the active sheet. Cells used by the formula will be recalculated as needed too.

    You can use this method as a simple calculator, or to calculate things like the sum of a range of cells in the spreadsheet. Look at the example for more information on how to use it.

    Note that we will consider the expression to be located in the cell A1 of the Active sheet. So for example "=ROW()" will return 1, and "=A2" will return the value of A2 in the active sheet.

    Syntax

    Namespace: FlexCel.Core

    public abstract Object RecalcExpression(String expression, Boolean forced)

    Parameters

    <-> Parameter Type Description
    expression String Formula to evaluate. It must start with "=" and be a valid Excel formula.
    forced Boolean When true this method will always perform a recalc. When false, only if there has been a change on the spreadsheet.
    While for performance reasons you will normally want to keep this false, you might need to set it to true if the formulas refer to functions like "=NOW()" or "=RANDOM()" that change every time you recalculate.

    Returns

    The value of the calculated formula.

    Examples

    To calculate the sum of all the cells in column A of the sheet "Data", you can use the following code:

        ExcelFile xls = new XlsFile("myfile.xls", true);
        xls.ActiveSheetByName = "Data";
        Double Result = Convert.ToDouble(xls.RecalcExpression("=Sum(A:A)"));
    

    To calculate a simple expression, you can use:

        return (double)xls.RecalcExpression("=1 + 2 * 3");
    

    See also

    • ExcelFile
    In This Article
    Back to top FlexCel Studio for the .NET Framework v7.24.0.0
    © 2002 - 2025 tmssoftware.com