Checks if a value ends with a search string
EndsWith("Australia", "ia") → true EndsWith("Financial position", "e") → false
EndsWith(string, search, [isCaseSensitive])
string - A text value to search in
string
search - A text value to search for
search
[isCaseSensitive] - [optional: true by default**]** - Set false if search should be case insensitive
[isCaseSensitive]
true
false