Don't miss your chance to take exam DP-600 or DP-700 on us!
Request nowLearn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
Hi,
I have a table siilar to below -
| Source | Year | county | school | Reponse | Total surveys |
| Hight School | 2018 | As | asdf | High Positive | 20 |
| Hight School | 2018 | As | asdf | Positive | 20 |
| Hight School | 2018 | As | asdf | Negative | 20 |
| Hight School | 2018 | Ad | grew | High Positive | 43 |
| Hight School | 2018 | Ad | grew | Positive | 43 |
| Hight School | 2018 | Ad | grew | Negative | 43 |
| Elementary | 2018 | Ad | grew | High Positive | 43 |
| Elementary | 2018 | Ad | grew | Positive | 43 |
| Elementary | 2018 | Ad | grew | Negative | 43 |
| Elementary | 2018 | As | asdf | High Positive | 20 |
| Elementary | 2018 | As | asdf | Positive | 20 |
| Elementary | 2018 | As | asdf | Negative | 20 |
When I am trying to sum the Total Surveys, it is summing up all the numbers in Total surveys column, I have slicers in my report for Source, year, School name, Response based on slicer selection, the sum should consider one total survey as total surveys are repetitive.
Any pointers are highly appreciated
Regards,
Rohith
Solved! Go to Solution.
So, you will probably need a measure like:
Measure =
SUMX(SUMMARIZE('Table',[Source],[Year],[county],[school],"__total",AVERAGE([Total surveys])),[__total])
The measure above seems to work. Here is a similar post for your reference.
So, you will probably need a measure like:
Measure =
SUMX(SUMMARIZE('Table',[Source],[Year],[county],[school],"__total",AVERAGE([Total surveys])),[__total])
Thanks for the reply Greg.
Here is my expected output:
By default the sum should be 20+43+20+43=126
If i select Highschool in my Source slicer, the result should be 20+43 =63
If i select Highschool and the County as AS, the result should be 20
If i select County as AS, the result should be 20(High School)+20(Elementary) = 40
and so on...
@RohithGn Please post your expected output as well.
Proud to be a PBI Community Champion
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Check out the February 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 54 | |
| 47 | |
| 39 | |
| 16 | |
| 15 |
| User | Count |
|---|---|
| 83 | |
| 71 | |
| 39 | |
| 29 | |
| 27 |