This is best Fabric, Power BI, SQL and AI community event. How do we know? The last event sold out! Save €200 with code FABCMTY200.
Register nowA new Data Days event is coming soon! This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. Don't miss out.
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 May 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 32 | |
| 25 | |
| 24 | |
| 24 | |
| 14 |
| User | Count |
|---|---|
| 61 | |
| 47 | |
| 27 | |
| 24 | |
| 19 |