Returns TRUE if text starts with a certain value, otherwise FALSE
STARTSWITH(text, value)
STARTSWITH checks value against text looking at the start of text. It returns TRUE if text starts with value, otherwise returns FALSE.
Example:
STARTSWITH("Hello", "H")
returns TRUE
STARTSWITH("Hello", "A")
returns FALSE
Text:
Value:
Result:
Categorizing Customer Feedback
Imagine you have a spreadsheet containing customer feedback from a recent survey. You want to quickly categorize the feedback based on keywords to understand the main themes. The STARTSWITH function is perfect for this.
The Goal: Automatically flag all feedback that begins with the word "Problem" as a "Service Issue" and all feedback that begins with "Suggestion" as a "Feature Request."
Table:
Feedback | Category | ||
|---|---|---|---|
A | B | ||
1 | Problem: My order was late. | Service Issue | |
2 | The app is great. | Other | |
3 | Suggestion: A dark mode would be nice. | Feature Request | |
4 | Problem with the checkout process. | Service Issue | |
5 | Suggestion for a new feature. | Feature Request |
Explanation of the Formula:
PRODUCT & FEATURES
RESOURCES
Terms | Privacy | Spam Policy
© 2026 Zapof