Forum Discussion
DAX Formatting inside a Measure?
- 4 years ago
Format the measure as a whole number, but in the price and % values follow this pattern:
VALUES(FilterMeasures[Measure]) = "Price/EAN", FORMAT[Price/EAN], "#,##0.00"),
and
VALUES(FilterMeasures[Measure]) = "Value%Share", FORMAT([Values MS], "#0.0%")
Many thanks PaulDBrown! This give me the format I want on all the Measure!
Now next challange is sorting, because it works perfect on Val/Vol/Uni but when sorting on Price and Share it comes in nummeric order from 1to9, I have tested a bit but cant really find a solution that the highest/lowest comes first, do you know anything about this?
The reason that the sorting is as you see it is because FORMAT returns a text string. You might try adding the numerical value as a new measure to sort the visual by. You can then hide it by turning off the text wrap options in the formatting pane and "hiding" the column by dragging the right boundary left to conceal it.