Forum Discussion
Show values as whole thousands
- Anonymous9 years ago
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.
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.
- HenrikH299 years ago
Advocate I
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...
- Anonymous9 years agoNot applicable
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.
- IanM8 years agoFrequent Visitor
Answered my question Ross, didnt even need to send you an email :-)