Page 1 of 1

Function: dataframe_get_value

Posted: Wed Oct 27, 2021 9:05 pm
by YiMeng
Description
  • Gets a value from 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.)

Usage
  • %dataframe_get_value&w&x&y%
  • Declare a dataframe then getting a cell/field value from the dataframe
    • DATAFRAME mydataframe = %DIALOG_FILE%
      SETVAR row = 0
      SETVAR col = 1
      DISPMSG %dataframe_get_value&mydataframe&%row%&%col%%