RTRIM
Removes spaces from the right hand side of a string.
Syntax
string RTRIM(string value)
Example
RTRIM("This has four spaces after the text .")
Will return "This has four spaces after the text."
You can apply this to a column from your data source by entering the column name into the brackets.
RTRIM(MyColumn)