GES() |
![]() ![]() ![]() |
The GES() function processes two dynamic arrays, returning a similarly structured result array indicating whether elements of the first array are greater than or equal to corresponding elements of the second array.
Format
GES(expr1, expr2)
where
expr1and expr2 are the dynamic arrays to be compared.
The GES() function compares corresponding elements of the dynamic arrays expr1 and expr2, returning a similarly structured dynamic array of true / false values indicating the results of the comparison.
The REUSE() function can be applied to either or both expressions. Without this function, any absent trailing values are taken as zero.
Example
A contains 11FM0VM14VMABCFM2 B contains 12FM0VM14VMACBFM2
C = GES(A, B)
C now contains 0FM1VM1VM1FM1
See also: ANDS(), EQS(), GTS(), IFS(), LES(), LTS(), NES(), NOTS(), ORS(), REUSE() |