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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more

Reply
Anonymous
Not applicable

Power BI Substring DAX

How Can I achieve COLUMN2 using DAX? Columns2 out is to show the characters before '-' from Column1 

 

COLUMN1COLUMN2
ABC-123ABC
DEFG-456DEFG
1 ACCEPTED SOLUTION
AlB
Community Champion
Community Champion

Hi @Anonymous 

Try this as new calculated column in your table

 

Column =
LEFT ( Table1[COLUMN1]; FIND ( "-"; Table1[COLUMN1] ) - 1 )

View solution in original post

1 REPLY 1
AlB
Community Champion
Community Champion

Hi @Anonymous 

Try this as new calculated column in your table

 

Column =
LEFT ( Table1[COLUMN1]; FIND ( "-"; Table1[COLUMN1] ) - 1 )

Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

Check out the October 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