endsWith
Use the endsWith function to check if a Text value ends with the characters of another Text value. The endsWith function returns a Boolean value.
Function format
endsWith(Text source, Text value)
- source: the Text value which is checked for the Text value parameter.
- value: the value checked for in the Text source.
endsWith example
endsWith("Hello, world!", "world!")
The formula returns the Boolean value True.