Overview
Grammar | STARTWITH(str1,str2) | Determining whether str1 starts with str2. |
Parameter 1 | str1 | Character string 1 |
Parameter 2 | str2 | Character string 2 |
Notes
str1 and str2 are both case-sensitive.
The function supports two parameters of any type.
Example
Formula | Result | Notes |
---|---|---|
STARTWITH("FineReport","Fine") | true | |
STARTWITH("FineReport","Report") | false |