FieldName - script function
The FieldName script function returns the name of the field with the specified number within a previously loaded table. If the function is used within a LOAD statement, it must not reference the table currently being loaded.
Syntax:
FieldName(field_number ,table_name)
Arguments:
Argument | Description |
---|---|
|
The field number of the field you want to reference. |
|
The table containing the field you want to reference. |
Example:
LET a = FieldName(4,'tab1');
Thanks for helping us improve!