Microsoft is giving away 50,000 FREE Microsoft Certification exam vouchers!
Enter the sweepstakes now!Prepping for a Fabric certification exam? Join us for a live prep session with exam experts to learn how to pass the exam. Register 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!
User | Count |
---|---|
77 | |
70 | |
69 | |
54 | |
48 |
User | Count |
---|---|
43 | |
36 | |
34 | |
31 | |
28 |