Forum Discussion
Card Visualization number format
- 6 years ago
Hey EMyrta,
It looks like there a few things you can do. So I've made a test that started like this
One option is to just change the number of decimal places to "0" and choose a different format display like this
If you are using things within a measure you can change your digits into text with the FORMAT function
Max Value = FORMAT(MAX('Table (2)'[Test]), "###,##0")Which gives you the same result
Let us know if that solves your problem
Hey EMyrta,
It looks like there a few things you can do. So I've made a test that started like this
One option is to just change the number of decimal places to "0" and choose a different format display like this
If you are using things within a measure you can change your digits into text with the FORMAT function
Max Value =
FORMAT(MAX('Table (2)'[Test]), "###,##0")
Which gives you the same result
Let us know if that solves your problem
Hi,
Thanks for providing two work around this! The first one is a good solution in my cause cause i have a calculated Measure as value in the card. As for the second one by it requires a column to perform such formating with the formula.
Thanks for quick reply! 🙂