📌 More functions: see the Formula function reference.
1 Basics
FIND searches for a value starting at a given position and returns the position of its first occurrence. Returns -1 if not found.Syntax
- search_value: the value to find — case-sensitive.
- search_range: a value, an array, or a field — where to search.
- start_position: starting position. Defaults to 1.
Examples
[Field 1] in the first record is “Hello World”.Example 1: position of “World”
Example 2: search for “o” starting at position 8
2 Scenario examples
2.1 Split by character
Field has three parts: date-location-store. Split off the date with FIND on ”-“:MID([Record name],FIND(%22-%22,[Record name],1)+1,len([Record name])