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!Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
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!
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!