EQS() |
![]() ![]() ![]() |
The EQS() function processes two dynamic arrays, returning a similarly structured result array indicating whether corresponding elements are equal.
Format
EQS(expr1, expr2)
where
expr1and expr2 are the dynamic arrays to be compared.
The EQS() 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 false.
Example
A contains 11FM0VM14VMABCFM2 B contains 12FM0VM14VMACBFM2
C = EQS(A, B)
C now contains 0FM1VM1VM0FM1
See also: ANDS(), GES(), GTS(), IFS(), LES(), LTS(), NES(), NOTS(), ORS(), REUSE() |