Search Results for

    Show / Hide Table of Contents

    ExcelFile.OffsetRelativeFormula Method

    Use this method to know the actual formula that applies to a cell when the formula is relative. In some places, mostly data validations and names, Excel returns relative formulas.

    So for example you might have a name with a definition of "=Sheet1!A2" when you are positioned at cell A1. If you now move the cursor to cell A2 in Excel, the name definition will be "=Sheet1!A3" since the reference is relative to the cell where the cursor is. If you retrieve the name formula with FlexCel, as FlexCel doesn't have a cursor, it will always return the canonical formula as if you were positioned at A1. If you want to know the real formula when you are positioned at A2, you need to call this method with cellRow =3, cellCol = 1 and expression = "=Sheet1!A2". It will return "=Sheet1!A3".

    Remarks

    Remember that you can use FormulaReferenceStyle to change the formulas to R1C1 style. R1C1 formulas are nicer for relative formulas, since they don't change when you change the cursor. (R1C1 references are already relative to the cell where the cursor is).

    Syntax

    Namespace: FlexCel.Core

    public abstract String OffsetRelativeFormula(Int32 activeSheet, Int32 cellRow, Int32 cellCol, String expression)

    Parameters

    <-> Parameter Type Description
    activeSheet Int32 Sheet where you are positioned when doing the calculation. You might pass xls.ActiveSheet here.
    cellRow Int32 Row of the cell where the relative formula is.
    cellCol Int32 Column of the cell where the relative formula is.
    expression String Formula to offset. It must start with "=", and be a valid Excel formula.

    Returns

    The formula with relative references changed to match the cell at cellRow, cellCol

    See also

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