Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Hi,
I have one field in Power BI 'Manager_Name'. The data is in below format:
Manager_Name |
Ali Erik (202682) |
Organization (Lisa Anderson (205616) |
Organization (Amy Wang (152237)) |
Cat Jack (On Leave) |
I want to remove bracket and number from the filed. So the result should be as below:
Result |
Ali Erik |
Organization (Lisa Anderson |
Organization (Amy Wang) |
Cat Jack (On Leave) |
I tried using below expression:
Text.Combine(List.RemoveItems(Text.ToList([Manager_name]),{"0".."9"}))
but it can remove only numbers but not brackets "()".
I would appreciate any help on this.
Thanks,
Rinku
Solved! Go to Solution.
Hi, @Anonymous , you might want to try
#"Added Custom" = Table.AddColumn(Source, "Custom", each Text.Replace(Text.Remove([Manager_Name], {"0".."9"}), "()", ""))
Thanks to the great efforts by MS engineers to simplify syntax of DAX! Most beginners are SUCCESSFULLY MISLED to think that they could easily master DAX; but it turns out that the intricacy of the most frequently used RANKX() is still way beyond their comprehension! |
DAX is simple, but NOT EASY! |
Hi, @Anonymous , you might want to try
#"Added Custom" = Table.AddColumn(Source, "Custom", each Text.Replace(Text.Remove([Manager_Name], {"0".."9"}), "()", ""))
Thanks to the great efforts by MS engineers to simplify syntax of DAX! Most beginners are SUCCESSFULLY MISLED to think that they could easily master DAX; but it turns out that the intricacy of the most frequently used RANKX() is still way beyond their comprehension! |
DAX is simple, but NOT EASY! |
@Anonymous , refer if these can help. You may have get number and replce it with ""
https://radacad.com/remove-digits-or-keep-them-in-power-bi-using-power-query