https://netsuiteprofessionals.com logo
Title
b

Brian

01/08/2020, 7:20 PM
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

Gregory Jones

01/08/2020, 7:32 PM
Yeah, the REPLACE() formula.
REPLACE({yourfieldhere},'EST','')
as Formula (Text)
b

Brian

01/08/2020, 8:29 PM
👍 Thanks