Forum Discussion
MasterSonic
Helper IV
3 years agoStruggling to remove ~DE and ~
Hi guys, I need some fresh idea, how to remove ~DE and ~ from the end the string please? Majority of column has ~DE, which is easy to do remove (text after delimiter) But after removing it I have ...
- 3 years ago
Text.TrimEnd( Text.Replace( your_string, "~DE", "" ), "~" )
MasterSonic
Helper IV
3 years agoHi guys,
resutls I am looking is this :
removing ~DE and ~(if last character only)
| ID | Column |
| 1 | triglyceride glue |
| 2 | lututudu glue |
| 3 | product 1 |
| 4 | produict 1~4 |
I will try with spliting perhaps
- AlienSx3 years ago
Super User
Text.TrimEnd( Text.Replace( your_string, "~DE", "" ), "~" )