Forum Discussion
Yashodhan
4 years agoFrequent Visitor
Dax
How to Count Two Specimen in One column with Meansure ?
- Anonymous4 years ago
Hi Yashodhan ,
Try this
Count New = CALCULATE ( COUNT ( 'Table'[Criteria] ), FILTER ( 'Table', [Criteria] = "New" ) )Count Old = CALCULATE ( COUNT ( 'Table'[Criteria] ), FILTER ( 'Table', [Criteria] = "Old" ) )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.
Yashodhan
4 years agoFrequent Visitor
Suppose in onne colum there are two Criteria:
New , Old
so I have to calculate New and Old
Anonymous
4 years agoNot applicable
Hi Yashodhan ,
Try this
Count New =
CALCULATE (
COUNT ( 'Table'[Criteria] ),
FILTER ( 'Table', [Criteria] = "New" )
)Count Old =
CALCULATE (
COUNT ( 'Table'[Criteria] ),
FILTER ( 'Table', [Criteria] = "Old" )
)
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.