Function: dataframe_get_value

Functions are used within scripts to enable more powerful operations such as dynamic methods for parsing, arrays and data types.
User avatar
YiMeng
Author
Posts: 235
Joined: Sat Jul 18, 2020 10:58 pm
Location: NY
Contact:

Function: dataframe_get_value

Unread post 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%%