NES() |
![]() ![]() ![]() |
The NES() function processes two dynamic arrays, returning a similarly structured result array indicating whether corresponding elements are not equal.
Format
NES(expr1, expr2)
where
The NES() 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 = NES(A, B)
C now contains 1FM0VM0VM1FM0
See also: ANDS(), EQS(), GES(), GTS(), IFS(), LES(), LTS(), NOTS(), ORS(), REUSE() |