Forum Discussion
ExcelKnut
1 year agoFrequent Visitor
Remove trailing commas
If values in a column contain a trailing comma, I need to remove it. However, commas separating values within that column need to be kept. I tried using Text.TrimEnd but that didn't work. Any...
bhanu_gautam
Super User
1 year agoExcelKnut Add a new custom column with the following formula:
= Text.Replace(Text.TrimEnd([YourColumnName], ","), ",,", ",")
nathancwatkins
Helper II
1 year agoUse Split by Delimiters, and start from the end.
--Nate