Expand description
Text formula functions: CONCAT, FIND, SEARCH, SUBSTITUTE, REPLACE, REPT, EXACT, T, PROPER.
Functions§
- fn_
concat - CONCAT(text1, [text2], …) - concatenates multiple values.
- fn_
exact - EXACT(text1, text2) - case-sensitive comparison.
- fn_find
- FIND(find_text, within_text, [start_num]) - case-sensitive search.
- fn_
proper - PROPER(text) - capitalizes first letter of each word.
- fn_
replace - REPLACE(old_text, start_num, num_chars, new_text) - replaces by position.
- fn_rept
- REPT(text, number_times) - repeats text.
- fn_
search - SEARCH(find_text, within_text, [start_num]) - case-insensitive search with wildcards.
- fn_
substitute - SUBSTITUTE(text, old_text, new_text, [instance_num]) - replaces occurrences.
- fn_t
- T(value) - returns text if value is text, empty string otherwise.