Hello,
I've been stuck on this for a couple of days now. I'm trying to run a search against a template field, but need to strip the dashes from the field that's already in Laserfiche. The below syntax obviously doesn't work, but here's basically what I'm trying to do.
{[]:[REPLACE(MyFieldName, "-", "")]="123ABC"}
To better illustrate, here's how I would do it in SQL
SELECT ID FROM MyTable WHERE REPLACE(MyFieldName, '-', '') = '123ABC'
Any help is appreciated, thanks! :)