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 Everyone,
I have data for Teams in East and West (as seen in atatched image) but unsure on how to make a table like below:
Essentially to look like this:
| Conference | Win | Loss |
| East | 564 | 176 |
| West | 567 | 199 |
Thank you for your help! 🙂
Solved! Go to Solution.
@Anonymous - You could do as:
NewTable = ALLNOBLANKROW(TableName[Conference])
then add new columns like:
W Column =
SUMMARIZE(
FILTER(TableName,TableName[Conference] = 'Table'[Conference]),
"@Sum",SUM(TableName[W])
)
L Column =
SUMMARIZE(
FILTER(TableName,TableName[Conference] = 'Table'[Conference]),
"@Sum",SUM(TableName[L])
)
Proud to be a Super User!
@Anonymous - You could do as:
NewTable = ALLNOBLANKROW(TableName[Conference])
then add new columns like:
W Column =
SUMMARIZE(
FILTER(TableName,TableName[Conference] = 'Table'[Conference]),
"@Sum",SUM(TableName[W])
)
L Column =
SUMMARIZE(
FILTER(TableName,TableName[Conference] = 'Table'[Conference]),
"@Sum",SUM(TableName[L])
)
Proud to be a Super User!
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
| User | Count |
|---|---|
| 39 | |
| 37 | |
| 33 | |
| 32 | |
| 29 |
| User | Count |
|---|---|
| 132 | |
| 88 | |
| 82 | |
| 68 | |
| 64 |