Forum Discussion

Mohannad17's avatar
Mohannad17
Frequent Visitor
4 years ago
Solved

Group By Summarize Table

 

Hi Everyone, I've a summrize table which is outputing the below table, I'm struglling to create a group by city and area, each time tht popoultion column return the whole popltion regardiless of which city or area.

 

 

CityAreaPopulation
LondonArea15
LondonArea15
LondonArea1

8


I want the output to be like this:

 

LondonArea118
  • Hi Mohannad17 ,

    If the Summarization of Population column is Sum, and in the Values pane, Sum is selected in the Population column drop down options, the Population column will automatically add in the visual.

    Or only select Sum in the Values pane in also OK.


    Or replace Population column with a measure:

    Sum = SUM('table'[Population])

    I attach my sample below for reference.

     

    Best Regards,
    Community Support Team _ kalyj

    If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

2 Replies

  • Hi Mohannad17 ,

    If the Summarization of Population column is Sum, and in the Values pane, Sum is selected in the Population column drop down options, the Population column will automatically add in the visual.

    Or only select Sum in the Values pane in also OK.


    Or replace Population column with a measure:

    Sum = SUM('table'[Population])

    I attach my sample below for reference.

     

    Best Regards,
    Community Support Team _ kalyj

    If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.