Page 1 of 1

Function: dataframe_set_value

Posted: Wed Oct 27, 2021 9:01 pm
by YiMeng
Description
  • Sets a value to a cell/field in a data frame.

Parameters
  • w: The name of the data frame.
  • x: The row index of the data within the data frame. (First data row index is equal to 0.)
  • y: The column index of the data frame. (First data frame column index is equal to 0.)
  • z: The new value to be updated into the cell/field.

Usage
  • %dataframe_set_value&w&x&y&z%
  • Declare a dataframe then setting a value in a dataframe
    • DATAFRAME mydataframe = %DIALOG_FILE%
      SETVAR row = 0
      SETVAR col = 1
      SETVAR newData = Hello World!
      SETVAR _ = %dataframe_set_value&mydataframe&%row%&%col%&%newData%%