Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
Just toying with AW - very new to PP - and got what looks like a formatting glitch.
I set up a TotalSales measure, which returns the output left justified.
I go back to format the number output as round thousands with the FORMAT function.
This works fine - except that now, amounts less than £1m (£1,000 in round thousands) are right justified.
I took out the FORMAT function, and the format was as at first. Put it back in, and again, the same thing with the justification.
Any help with what's going on here?
Hi @DSP,
Can you share a screenshot to clarify the issue?
The Format() function will return the TEXT values. Instead of using Format() function in your measure, you can select the measure (before you using Format()) and enable the Thousands Separator.
Best Regards,
Qiuyun Yu
The measure without formatting is
=CALCULATE ( [TotalSales] , FILTER ( ALL ( DimDate ), DimDate[DateKey] <= MAX ( DimDate[DateKey] ) ) )
This produces the following:
The measure with formatting is
=FORMAT( CALCULATE ( [TotalSales] , FILTER ( ALL ( DimDate ), DimDate[DateKey] <= MAX ( DimDate[DateKey] ) ) ) ,"#,###,")
This produces the following:
i'm still intrigued to know why this is happening (and how to make it stop!)
Hi @DSP,
Please try to change the measure like below:
=FORMAT(
CALCULATE (
[TotalSales] ,
FILTER (
ALL ( DimDate ),
DimDate[DateKey] <= MAX ( DimDate[DateKey] )
)
)
,"Currency")
We can use predefined numeric function or custom numeric function, see:
Pre-Defined Numeric Formats for the FORMAT Function
Custom Numeric Formats for the FORMAT Function
Best Regards,
Qiuyun Yu
Check out the September 2024 Power BI update to learn about new features.
Learn from experts, get hands-on experience, and win awesome prizes.
User | Count |
---|---|
103 | |
98 | |
98 | |
38 | |
37 |
User | Count |
---|---|
154 | |
120 | |
73 | |
73 | |
63 |