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! Having some issues when displaying a metric with multiple data formats (Percent & Currency: "€ #,##0"). The format formula I'm using is below (Format is set to Dynamic beforehand).
Solved! Go to Solution.
Hi @niculeica ,
I create a table as you mentioned.
Then I create two calculated columns. Here are the DAX codes.
Column = FORMAT('Table'[Number],"0.00%")Column 2 = FORMAT('Table'[Score],"€ #,##0")
Then I put it into the matrix table. It will give you what you want.
Best Regards
Yilong Zhou
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @niculeica ,
I create a table as you mentioned.
Then I create two calculated columns. Here are the DAX codes.
Column = FORMAT('Table'[Number],"0.00%")Column 2 = FORMAT('Table'[Score],"€ #,##0")
Then I put it into the matrix table. It will give you what you want.
Best Regards
Yilong Zhou
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
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.