The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
Hi, anyone can help me ?
I would like to remove [/] at the last of the text. Text is like [test.com/sites/A0001/].
I would like to remove last [/] and make it to [test.com/sites/A0001].
Tried this one, but actually this remove all [/] form the text not only the last of [/]....
Solved! Go to Solution.
If the character is always at the end of the field, you could just remove the last character , eg,
NewColumn = LEFT(ABCUser[SiteURL], LEN(ABCUser[SiteURL]) - 1)
Hi,
This is how it is done in the Query Editor
Thank you very much. I first tried in query editor but could not find way. Thanks !
You are welcome. If my reply helped, please mark it as Answer.
Thank you very much ! this works as well. and also different way of thinking.. I will remember this. Thanks !
If the character is always at the end of the field, you could just remove the last character , eg,
NewColumn = LEFT(ABCUser[SiteURL], LEN(ABCUser[SiteURL]) - 1)
Thank you very much ! this works and very simple solution as well!