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