Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
Is there a way to format visuals or tables to have the numbers shown in whole thousands.
The object is to make it more readable ie. "1.234" instead of "1.234.123" as i have a large number of values in some matix visuals.
Solved! Go to Solution.
Ahh for a matrix, got ya. For those i believe you'd have to write a measure that would convert the output for you.
Maybe something like:
Your Measure = ([Your Value] / 1000) & "K"
You could add rounding in here too.
Select the metric --> Got to Format your Visual Option --> Specific Column --> Display Units --> Thousands/Millions/...
In 2021 showing thousands or millions etc is now just a format option on the Matrix. The accepted solution involving making measures is now obsolete. Is there a way to flag out of date questions and answers?
Hi @PeteD ,
Not closed for me. If we're using a matrix to show a series of measures and improve performance, instead of using multiple single card visuals, then the measures appear without rounding. If we fix a rounding to display units in millions for example, then when we change the period from YTD to MTD the value may not reflect a useful amount, just $0.0M. This feature to change automatically doesn't exist, correct?
Regards,
Fernando
Agreed. The visual could show the data based on any value selected for a slicer. For eg. WW will have numbers in millions but looking at specific region/country through same visual, screws up the data labels.
I cannot find the option to format values as thousands in a Matrix. Can someone post a screenshot of where that is?
Yes, quite a lot of visuals allow you to do that. Look under the "Format" section of the Visualisation Settings. In there will be sections relating to the various displays. What you are looking for is an option called "Display Units" and "Decimal Precision". These are typically defaulted to "Auto", but you can set it to "Thousands" and 0
Yes i found that in other visuals however i cannot find it in the new Preview Matix visual (the one with drill down functionality).
I guess it's not an option in that.
Ahh for a matrix, got ya. For those i believe you'd have to write a measure that would convert the output for you.
Maybe something like:
Your Measure = ([Your Value] / 1000) & "K"
You could add rounding in here too.
Answered my question Ross, didnt even need to send you an email 🙂
Yes that was what i was "afraid of" .
I have a lot of values so i had hoped for a easier solution 🙂
Perhaps it will come as an option later...
I just tested this on a file i'm working on thats fairly sizable. This was pretty fast:
Rev = VAR Result = round([Revenue] / 1000, 0) RETURN if( Result = 0, BLANK(), Result & "K" )
*Note [Revenue] is a measure i'm using that is a sum of data.
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 |
---|---|
114 | |
88 | |
87 | |
35 | |
35 |
User | Count |
---|---|
154 | |
100 | |
83 | |
63 | |
54 |