Forum Discussion
Comma Separator in Chart Visualizations
- 5 years ago
Hi, melandiemcgee
According to your description, I can roughly understand your problem, I think you can create a measure that uses the FORMAT() function to achieve the comma in the counted number even though it's “Text” type:
First, you should create a measure to count the value and nest the FORMAT() function outside like this:
Measure = FORMAT(COUNT('Table'[Value]),"#,##0")And you can get what you want, like this:
You can download my test pbix file below
More info about the FORMAT() function in DAX
If this result is not what you want, you can post some sample data(without sensitive data) and your expected result.
How to Get Your Question Answered Quickly
Thank you very much!
Best Regards,
Community Support Team _Robert Qin
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi, melandiemcgee
According to your description, I can roughly understand your problem, I think you can create a measure that uses the FORMAT() function to achieve the comma in the counted number even though it's “Text” type:
First, you should create a measure to count the value and nest the FORMAT() function outside like this:
Measure =
FORMAT(COUNT('Table'[Value]),"#,##0")
And you can get what you want, like this:
You can download my test pbix file below
More info about the FORMAT() function in DAX
If this result is not what you want, you can post some sample data(without sensitive data) and your expected result.
How to Get Your Question Answered Quickly
Thank you very much!
Best Regards,
Community Support Team _Robert Qin
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.