Forum Discussion
how to count a measure with string values
- Anonymous3 years ago
Hi learningOh ,
I made a simple example for reference. There is a code column, the test measure, just like in your screenshot. Then you want to calculate the number of wins and losses.
Create a table for different types. Here I used Enter Data.
Create a measure for counting.
Count = COUNTX(FILTER('Table',[test]=MAX('Table (2)'[type])),[Code])Then check the below table visual.
You can also download my attachment for more details.
Best Regards,
Stephen Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi learningOh ,
I made a simple example for reference. There is a code column, the test measure, just like in your screenshot. Then you want to calculate the number of wins and losses.
Create a table for different types. Here I used Enter Data.
Create a measure for counting.
Count = COUNTX(FILTER('Table',[test]=MAX('Table (2)'[type])),[Code])
Then check the below table visual.
You can also download my attachment for more details.
Best Regards,
Stephen Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.