The ultimate Microsoft Fabric, Power BI, Azure AI, and SQL learning event: Join us in Stockholm, September 24-27, 2024.
Save €200 with code MSCUST on top of early bird pricing!
Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
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 few rows like 3 (example below), that are blank after that process.
Can I ask you for some idea how to process that please?
ID | Column |
1 | triglyceride glue~DE |
2 | lututudu glue~DE |
3 | product 1~ |
4 | produict 1~4 |
Solved! Go to Solution.
Text.TrimEnd( Text.Replace( your_string, "~DE", "" ), "~" )
Hi 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
Text.TrimEnd( Text.Replace( your_string, "~DE", "" ), "~" )
this?
Text.Replace( Text.Replace( your_string, "~DE", "" ), "~", "" )
>Add Custom Column :
> Text.Select([Column],{"A".."z","0".."9"})
@MasterSonic you want remove or split if you split it will be blank but if you no need split column so you can delete.
Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.
Check out the August 2024 Power BI update to learn about new features.