FORMULA LANGUAGE
Compares the alphabetic order of the elements in two lists pair-wise.
Note This @function is new with Release 6.
Syntax
@Compare( textlist ; textlist ; [ options ] )
Parameters
textlist
[CASESENSITIVE] (default)
[CASEINSENSITIVE]
[ACCENTSENSITIVE] (default)
[ACCENTINSENSITIVE]
[PITCHSENSITIVE] (default)
[PITCHINSENSITIVE]
result
The comparison sequence for the English character set is as follows: the apostrophe, the dash, the numbers 0-9, the alphabetic characters a-z and A-Z, and the remaining special characters. The sequence for the alphabetic characters is in order, lowercase character first: a, A, b, B, and so on through z, Z. This sequence can lead to some anomalies; for example, "new york" compares before "New Boston." Use the [CaseInsensitive] option, or @UpperCase, @LowerCase, and @ProperCase to address this behavior.
If you set Unicode standard sorting as the sorting option, you cannot select the following keywords or combinations:
For more information on Unicode sorting, see http://oss.software.ibm.com/icu/
Language cross-reference
StrCompare function of LotusScript language
Example See Also