Forum Discussion

melandiemcgee's avatar
melandiemcgee
Regular Visitor
5 years ago
Solved

Comma Separator in Chart Visualizations

Hello,   I am new to Power BI and am stuck on a formatting issue. I would really like to include a comma separator for the numbers in my chart (see screenshot). However, every time I try to update...
  • v-robertq-msft's avatar
    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.