Options to configure a formula replacing column values.

interface MathModifierColumnFormulaOptions {
    column: string;
    formula: string;
    rowEnd?: number;
    rowStart?: number;
}

Properties

column: string

Column name in the DataTable to replace with values of the formula.

formula: string

Formula to use to replace column values.

rowEnd?: number

Row index to end the replacing process.

rowStart?: number

Row index to start the replacing process from.