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! Learn more
How Can I achieve COLUMN2 using DAX? Columns2 out is to show the characters before '-' from Column1
| COLUMN1 | COLUMN2 | 
| ABC-123 | ABC | 
| DEFG-456 | DEFG | 
Solved! Go to Solution.
Hi @Anonymous
Try this as new calculated column in your table
Column = LEFT ( Table1[COLUMN1]; FIND ( "-"; Table1[COLUMN1] ) - 1 )
Hi @Anonymous
Try this as new calculated column in your table
Column = LEFT ( Table1[COLUMN1]; FIND ( "-"; Table1[COLUMN1] ) - 1 )
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.