Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request 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
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!