Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
Hi all,
I have a table employee at emp_ID level.I would like to get the output in this form.
I am running this query.
evaluate summarize(employee,employee[grade],"count",calculate(count(employee[emp_id])), "pay",calculate(max(employee[salary]),employee[grade] in {"A","B"}))
But it is throwing an error as out of memory. Even more complex queries are running easily. But this is hitting some issue. Can you please suggest me how to do this.
Solved! Go to Solution.
Hi @Anonymous ,
You can create calculated table like DAX below.
NewTable=summarize(employee, employee[grade],
"count", calculate(count(employee[emp_id]), ALLEXCEPT(employee[grade])),
"pay", calculate(max(employee[salary]),FILTER(ALLEXCEPT(employee[grade]), employee[grade] in {"A","B"})))
Best Regards,
Amy
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @Anonymous ,
You can create calculated table like DAX below.
NewTable=summarize(employee, employee[grade],
"count", calculate(count(employee[emp_id]), ALLEXCEPT(employee[grade])),
"pay", calculate(max(employee[salary]),FILTER(ALLEXCEPT(employee[grade]), employee[grade] in {"A","B"})))
Best Regards,
Amy
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
Check out the November 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 66 | |
| 46 | |
| 42 | |
| 26 | |
| 19 |
| User | Count |
|---|---|
| 196 | |
| 127 | |
| 102 | |
| 67 | |
| 49 |