Hello , I am trying to update sheets name from an excel file, but some of them have trailing spaces in it, i want to delete this spaces
thanks for your support
@ABC_Anonymous use the Trim() function
eg: Trim([Field Name])
You can use the Data Cleansing tool and select "Leading and Trailing Whitespace" in the Remove Unwanted Characters section.
i want to Remove Leading and Trailing Whitespace in the sheet name and save it
Trim (Colname), Data Cleansing tool (Check Leading and Trailing Whitespaces), and in some cases use additionally a formula tool Replace(Colname,' ','')
