In a saved search is there a formula that can repl...
# general
b
In a saved search is there a formula that can replace a string of text? Similar to the ?replace function in freemarker. I'm trying to exclude the prefix "EST" from an estimate search.
g
Yeah, the REPLACE() formula.
REPLACE({yourfieldhere},'EST','')
as Formula (Text)
b
👍 Thanks