Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
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.