Returns true if, in alphabetical order, String a comes after String b, i.e. a > b.
Syntax
STRGT(String a, String b)
Input
String a | is a string |
Domain type: | any Class or ID domain, or system domain String |
String b | is a string |
Domain type: | any Class or ID domain, or system domain String |
Output
STRGT returns: | a boolean value, i.e. True, False, or undefined |
Domain type: | system domain Bool |
Note:
When one of the input parameters is undefined, or when both input parameters are undefined, the output will also be undefined.
Tips:
Usable in
Examples
Pocket line calculator examples:
? STRGT("Landuse","Forest") |
returns True |
? "Airport" > "Industrial" | returns False |
TabCalc example:
OutCol = STRGT(Landuse,Geomorphology)
Landuse |
Geomorphology |
OutCol |
Institutional |
Glacial slope |
True |
Commercial |
Glacial lake |
False |
Residential |
Old landslide |
True |
? |
Active landslide |
? |
Industrial |
Heavily eroded area |
True |
Recreational |
River floodplain |
False |
Transport |
Valley in alluvial fan |
False |
Airport |
? |
? |
Water |
Water |
False |
See also:
STRGE |