Cell.SetTableFormula

SetTableFormula(int, int, string, string, object[][])

Create two-variable data table for given range starting from this cell.

public void SetTableFormula(int rowNumber, int columnNumber, string rowInputCell, 
    string columnInputCell, object[][] values)
ParameterTypeDescription
rowNumberInt32Number of rows to populate the formula.
columnNumberInt32Number of columns to populate the formula.
rowInputCellStringthe row input cell
columnInputCellStringthe column input cell
valuesObject[][]values for cells in table formula range

See Also


SetTableFormula(int, int, string, bool, object[][])

Create one-variable data table for given range starting from this cell.

public void SetTableFormula(int rowNumber, int columnNumber, string inputCell, bool isRowInput, 
    object[][] values)
ParameterTypeDescription
rowNumberInt32Number of rows to populate the formula.
columnNumberInt32Number of columns to populate the formula.
inputCellStringthe input cell
isRowInputBooleanIndicates whether the input cell is a row input cell(true) or a column input cell(false).
valuesObject[][]values for cells in table formula range

See Also


SetTableFormula(int, int, int, int, int, int, object[][])

Create two-variable data table for given range starting from this cell.

public void SetTableFormula(int rowNumber, int columnNumber, int rowIndexOfRowInputCell, 
    int columnIndexOfRowInputCell, int rowIndexOfColumnInputCell, int columnIndexOfColumnInputCell, 
    object[][] values)
ParameterTypeDescription
rowNumberInt32Number of rows to populate the formula.
columnNumberInt32Number of columns to populate the formula.
rowIndexOfRowInputCellInt32row index of the row input cell
columnIndexOfRowInputCellInt32column index of the row input cell
rowIndexOfColumnInputCellInt32row index of the column input cell
columnIndexOfColumnInputCellInt32column index of the column input cell
valuesObject[][]values for cells in table formula range

See Also


SetTableFormula(int, int, int, int, bool, object[][])

Create one-variable data table for given range starting from this cell.

public void SetTableFormula(int rowNumber, int columnNumber, int rowIndexOfInputCell, 
    int columnIndexOfInputCell, bool isRowInput, object[][] values)
ParameterTypeDescription
rowNumberInt32Number of rows to populate the formula.
columnNumberInt32Number of columns to populate the formula.
rowIndexOfInputCellInt32row index of the input cell
columnIndexOfInputCellInt32column index of the input cell
isRowInputBooleanIndicates whether the input cell is a row input cell(true) or a column input cell(false).
valuesObject[][]values for cells in table formula range

See Also