Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hello All,
I have table where I am having data like below.
My requirement is I need to create a DAX logic where I can get the score for only team A
| Team | Score |
| A | 10 |
| B | 20 |
| C | 30 |
Solved! Go to Solution.
Hi,
Please check the below picture and the attached pbix file.
Score only A measure: =
CALCULATE ( SUM ( 'Table'[Score] ), 'Table'[Team] = "A" )
Hi,
Please check the below picture and the attached pbix file.
Score only A measure: =
CALCULATE ( SUM ( 'Table'[Score] ), 'Table'[Team] = "A" )
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!