Use start_num to skip a specified number of characters. For example, suppose you are working with the text string "AYF0093.YoungMensApparel". To find the number of the first "Y" in the descriptive part of the text string, set start_num equal to 8 so that the serial-number portion of the text is not searched. SEARCH begins with character 8, finds find_text at the next character, and returns the number 9. SEARCH always returns the number of characters from the start of within_text, counting the characters you skip if start_num is greater than 1.
Remarks
- SEARCH does not distinguish between uppercase and lowercase letters when searching text.
- SEARCH is similar to FIND except that FIND is case sensitive.
- If find_text is not found, the #VALUE! error value is returned.
- If start_num is omitted, it is assumed to be 1.
- If start_num is not greater than 0 (zero) or is greater than the length of within_text, the #VALUE! error value is returned.
Example
Col1 | Col2 | Col3 | Formula | Description (Result) |
---|---|---|---|---|
Statements | Profit Margin | margin | =SEARCH("e",[Col1],6) | Position of the first "e" in the string, starting at the sixth position (7) |
Statements | Profit Margin | margin | =SEARCH([Col2],[Col3]) | Position of "margin" in "Profit Margin" (8) |
Statements | Profit Margin | margin | =REPLACE([Col3],SEARCH([Col3],[Col2]),6,"Amount") | Replaces "Margin" with "Amount" (Profit Amount) |