Forum Discussion
Anonymous
3 years agoNot applicable
Filtering in Dax functions
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 |
Hi,
Please check the below picture and the attached pbix file.
Score only A measure: = CALCULATE ( SUM ( 'Table'[Score] ), 'Table'[Team] = "A" )
1 Reply
- Jihwan_KimSuper User
Hi,
Please check the below picture and the attached pbix file.
Score only A measure: = CALCULATE ( SUM ( 'Table'[Score] ), 'Table'[Team] = "A" )