Microsoft Fabric Community Conference 2025, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount.
Register nowThe Power BI DataViz World Championships are on! With four chances to enter, you could win a spot in the LIVE Grand Finale in Las Vegas. Show off your skills.
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.
@NiallMoo - 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!
@NiallMoo - 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!