ISGT returns a value of 1 if the value in the conditional variable contains the greater than symbol: ">". It returns 0 otherwise.
SYNTAX:
ISGT(Cx)
where :
Cx is a conditional variable x
NOTES:
If you use the Vx syntax instead of the Cx syntax, the result will be blank if the input is blank.
EXAMPLES:
V89 = ISGT (C71)
In this example, variable 89 will be 1 when variable 71 cotains the ">" symbol and 0 otherwise, as demostrated below:

Here is the same example data, however, the variable reference has now been changed to use the Vx syntax:
V89 = ISGT(V71):
