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.
City | Area | Population |
London | Area1 | 5 |
London | Area1 | 5 |
London | Area1 | 8 |
I want the output to be like this:
London | Area1 | 18 |
Solved! Go to Solution.
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.
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.
@Mohannad17 , Create a measure Max(table[Population]) and use that in visual
User | Count |
---|---|
119 | |
59 | |
58 | |
50 | |
40 |
User | Count |
---|---|
113 | |
63 | |
59 | |
54 | |
48 |