Forum Discussion
Format number in matrix
- Anonymous4 years ago
Hi ADP007
Power BI column or measure could be formatted in one data type. So if you format your OOH measure as Percentage data type, all values from this measure will show in Percentage. You can try if function to achieve your goal. New measure will be formatted as text type.
Try this measure.
New_OOH = SWITCH(TRUE(),MAX('Table'[KPI]) = "Likeability",FORMAT([OOH]*100,"#.00"),FORMAT([OOH],"#.00%"))Result is as below.
Best Regards,
Rico ZhouIf this post helps, then please consider Accept it as the solution to help the other members find it more quickl
Hi ADP007
Power BI column or measure could be formatted in one data type. So if you format your OOH measure as Percentage data type, all values from this measure will show in Percentage. You can try if function to achieve your goal. New measure will be formatted as text type.
Try this measure.
New_OOH =
SWITCH(TRUE(),MAX('Table'[KPI]) = "Likeability",FORMAT([OOH]*100,"#.00"),FORMAT([OOH],"#.00%"))
Result is as below.
Best Regards,
Rico Zhou
If this post helps, then please consider Accept it as the solution to help the other members find it more quickl
Thanks a lot Anonymous
This will do the job as t's only for presenting figures. No totals, drill down etc...
Many thanks
D.