I have an input translation formula thus:
@Trim(@Replace(fieldName;" “;”"))
and although it is triming the field values it is not replacing spaces with no spaces.
any ideas ?
thanks
I have an input translation formula thus:
@Trim(@Replace(fieldName;" “;”"))
and although it is triming the field values it is not replacing spaces with no spaces.
any ideas ?
thanks
Subject: @Replace in input translation not removing space
@Replace works on complete list entries – your @Replace is looking for entries that consist of only a single space and replacing them with empty strings. I think you’re looking for @ReplaceSubstring.
Subject: RE: @Replace in input translation not removing space
You know, you are right.
i apologise for being an idiot. I’ve spent too long playing with portals and been too long away from notes.
thanks Stan.