set_table_formula method

set_table_formula

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

def set_table_formula(self, row_number, column_number, row_input_cell, column_input_cell, values):
    ...
ParameterTypeDescription
row_numberintNumber of rows to populate the formula.
column_numberintNumber of columns to populate the formula.
row_input_cellstrthe row input cell
column_input_cellstrthe column input cell
valueslistvalues for cells in table formula range

set_table_formula

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

def set_table_formula(self, row_number, column_number, input_cell, is_row_input, values):
    ...
ParameterTypeDescription
row_numberintNumber of rows to populate the formula.
column_numberintNumber of columns to populate the formula.
input_cellstrthe input cell
is_row_inputboolIndicates whether the input cell is a row input cell(true) or a column input cell(false).
valueslistvalues for cells in table formula range

set_table_formula

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

def set_table_formula(self, row_number, column_number, row_index_of_input_cell, column_index_of_input_cell, is_row_input, values):
    ...
ParameterTypeDescription
row_numberintNumber of rows to populate the formula.
column_numberintNumber of columns to populate the formula.
row_index_of_input_cellintrow index of the input cell
column_index_of_input_cellintcolumn index of the input cell
is_row_inputboolIndicates whether the input cell is a row input cell(true) or a column input cell(false).
valueslistvalues for cells in table formula range

set_table_formula

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

def set_table_formula(self, row_number, column_number, row_index_of_row_input_cell, column_index_of_row_input_cell, row_index_of_column_input_cell, column_index_of_column_input_cell, values):
    ...
ParameterTypeDescription
row_numberintNumber of rows to populate the formula.
column_numberintNumber of columns to populate the formula.
row_index_of_row_input_cellintrow index of the row input cell
column_index_of_row_input_cellintcolumn index of the row input cell
row_index_of_column_input_cellintrow index of the column input cell
column_index_of_column_input_cellintcolumn index of the column input cell
valueslistvalues for cells in table formula range

See Also