I have a field that is an entry field and that is part of a rather complicated page design, where I need to be able to trim away and spaces at the end of an entry as sometimes the user ads a whitespace I guess out of habit.
Is this possible?
I’ve been playing around with the TRIM() and SUBSTITUTE(), but I have a hard time finding a solution that’ll apply just to the end of the entry?
I’ve tried this, but it dosen’t get rid of the white space at the end
IF(RIGHT({Alcantara},1)=" ",
LEFT({Alcantara}, FIND(' ', {Alcantara}, LEN({Alcantara})-1),
{Alcantara}
)