Hello,
Please how do I stop unwanted charater “///” in computed field showing up. This is because of canonicalizing but I don’t want the /// showing in the field.
Is there a function such @Trim for removing characters?
I have tried using @Begins, here is the code but not working exactly well…
FIELD ReviewedBy := ApprovededBy+“/” ;
FIELD S := @Set(“ApproveByFmt”;“”);
@If(@Begins(“ApproveByFmt”; “/”); S ;(@Name([Canonicalize];ReviewedBy)))
Thanks a Lot!