Returns the value of a variable.
| Category: | String |
| Returned data type: | String |
| Tip: | The VAREVAL( ) function must look up field names each time it is called. Use the VAREVAL( ) function sparingly to avoid performance degradation. |
// Declare the string values for the function
string field_number
string field_value
// Declare a hidden integer as a counter
hidden integer n
// Loop trough all 5 variables in an input data source
for n=1 to 5
// Output the value in each of the fields field_1 through field_5
begin
field_number='field_' & n
field_value=vareval(field_number)
pushrow()
end
// Return false to prevent the last row from showing up twice
return false