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.
hello
i need to remove character before this symbol "|" or ":" for example :
fi|TPZ - FTSA-Audio must becomes TPZ - FTSA-Audio
Any help please?
Many thanks
Solved! Go to Solution.
Calculated Column:
NewValue = RIGHT('Table'[Column1];(LEN([Column1])-FIND("|";'Table'[Column1];1;0)))
Hope it helps, please mark as solution if so. Thumbs up for the effort are appreciated.
Kind regards, Steve.
Proud to be a Super User!
Awesome Keyboard Shortcusts in Power BI, thumbs up if you like the article
My Community Blog Articles (check them out!)
My Blog - Power M code to automatically detect column types -
How to create test data using DAX!
Please consider this solution and leave kudos
newstring =
-- *** replace VAR inputstring = "fi|TPZ - FTSA-Audio" with VAR inputstring = yourtable[yourcolumn]
Calculated Column:
NewValue = RIGHT('Table'[Column1];(LEN([Column1])-FIND("|";'Table'[Column1];1;0)))
Hope it helps, please mark as solution if so. Thumbs up for the effort are appreciated.
Kind regards, Steve.
Proud to be a Super User!
Awesome Keyboard Shortcusts in Power BI, thumbs up if you like the article
My Community Blog Articles (check them out!)
My Blog - Power M code to automatically detect column types -
How to create test data using DAX!
User | Count |
---|---|
15 | |
8 | |
6 | |
6 | |
6 |
User | Count |
---|---|
23 | |
14 | |
13 | |
8 | |
8 |