Forum Discussion
Multiple Data formats in the same Metric
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).
- Anonymous2 years ago
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.
1 Reply
- AnonymousNot applicable
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.