Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes! Register now.

Reply
Earl40
Helper I
Helper I

Custom column to extract part of the text

I have  a file that has a name column that contains 2 type of text before the actual name. All items will have (AB/CF) infront (used X;s to represent the name) but some will also have USA - after. Is it possible to create a custom column and have a dax formula remove  the (AB/CF) from all the names but also remove USA - where applicable? Sample screenshot below

 

Thank You in advance

 

Earl40_0-1701985464263.png

 

2 ACCEPTED SOLUTIONS
khaledHabib90
Resolver II
Resolver II

The easier solution would be to use power query

1- duplicate the column if you want to keep the original form of the data

2- perform 2 replace operations in power query , first replace the (AB/CF) with blank then USA-

Add spaces before and after as appropriate so that they are removed with the replace operations

 

If my reply helped you solve your problem please accept this as the solution 🙂

View solution in original post

Anonymous
Not applicable

Hi @Earl40 ,

 

If you want to achieve this with DAX, you can try

Measure = IF(CONTAINSSTRINGEXACT(MAX('Table'[Original Name]),"(AB/CF) USA-"),SUBSTITUTE(MAX('Table'[Original Name]),"(AB/CF) USA-",""),IF(CONTAINSSTRINGEXACT(MAX('Table'[Original Name]),"(AB/CF)"),SUBSTITUTE(MAX('Table'[Original Name]),"(AB/CF)",""),0))

 

vtianyichmsft_0-1702372901085.png

An attachment for your reference. Hope it helps!

 

Best regards,
Community Support Team_ Scott Chang

 

If this post helps then please consider Accept it as the solution to help the other members find it more quickly.

 

View solution in original post

4 REPLIES 4
Ahmedx
Super User
Super User

pls try this

Screenshot_2.png

Bibiano_Geraldo
Super User
Super User

Try the following code:

CustomColumn = SUBSTITUTE(SUBSTITUTE([Your_Column_Name], "(AB/CF)", ""), "USA - ", "")

 

 

Anonymous
Not applicable

Hi @Earl40 ,

 

If you want to achieve this with DAX, you can try

Measure = IF(CONTAINSSTRINGEXACT(MAX('Table'[Original Name]),"(AB/CF) USA-"),SUBSTITUTE(MAX('Table'[Original Name]),"(AB/CF) USA-",""),IF(CONTAINSSTRINGEXACT(MAX('Table'[Original Name]),"(AB/CF)"),SUBSTITUTE(MAX('Table'[Original Name]),"(AB/CF)",""),0))

 

vtianyichmsft_0-1702372901085.png

An attachment for your reference. Hope it helps!

 

Best regards,
Community Support Team_ Scott Chang

 

If this post helps then please consider Accept it as the solution to help the other members find it more quickly.

 

khaledHabib90
Resolver II
Resolver II

The easier solution would be to use power query

1- duplicate the column if you want to keep the original form of the data

2- perform 2 replace operations in power query , first replace the (AB/CF) with blank then USA-

Add spaces before and after as appropriate so that they are removed with the replace operations

 

If my reply helped you solve your problem please accept this as the solution 🙂

Helpful resources

Announcements
September Power BI Update Carousel

Power BI Monthly Update - September 2025

Check out the September 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors
Top Kudoed Authors