Don't miss your chance to take the Fabric Data Engineer (DP-600) exam for FREE! Find out how by watching the DP-600 session on-demand now through April 28th.
Learn moreJoin the FabCon + SQLCon recap series. Up next: Power BI, Real-Time Intelligence, IQ and AI, and Data Factory take center stage. All sessions are available on-demand after the live show. Register now
Hi everyone , I need help with this issue i have a table visual:
| User | level | Salery |
| A | 1 | 34 |
| B | 2 | 32 |
| B | 2 | 37 |
| C | 1 | 26 |
| C | 3 | 28 |
| C | 1 | 29 |
| D | 3 | 33 |
| E | 1 | 30 |
if i remove the level column i want this:
| A | 34 |
| B | 69 |
| C | 83 |
| D | 33 |
| E | 30 |
its possible to do it in measure?
Hi @Anonymous ,
One point of confusion, if you remove the level column, Power BI will automatically calculate the Salery.
If i misunderstood you, please let me know and share your pbix file without sensitive data and expect result.
Best Regards
Community Support Team _ chenwu zhu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
https://www.dropbox.com/s/qfml0a8lyf45rts/test%20group.pbix?dl=0
Hi, thank you for your reply, i have add the pbix file, what i want is like ,i want sum the distinct store type.
Hi @Anonymous ,
Sorry, still don't quite understand what you want the result to look like. Please give what you want the result to look like, hand-drawn is fine.
Best Regards
Community Support Team _ chenwu zhu
Hi @Anonymous ,
Try this measure below which is similar to COUNTIF in Excel:
MyMeasure =
CALCULATE ( SUM ( Table[Salery] ), ALLEXCEPT ( Table, Table[User] ) )
//will return the sum of Salery for each User
Thank you for your reply but it doesnt work 😞 , i didnt get the result
What would your formula be if you did it in Excel?
Hi again , I dont have any formula :), i just dont get right value.
Check out the April 2026 Power BI update to learn about new features.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
| User | Count |
|---|---|
| 42 | |
| 37 | |
| 34 | |
| 21 | |
| 16 |
| User | Count |
|---|---|
| 65 | |
| 62 | |
| 31 | |
| 26 | |
| 25 |