Forum Discussion
Count multiple criteria same column
- Anonymous8 years ago
You can either use IN or CONTAISNROW function.
Case = CALCULATE(COUNTROWS(Case_Data),Case_Data[CaseType] IN {"2","61"})
Thansk
Raj
You can either use IN or CONTAISNROW function.
Case = CALCULATE(COUNTROWS(Case_Data),Case_Data[CaseType] IN {"2","61"})
Thansk
Raj
Hi Raj...
getting the follwoing error
- MFelix8 years agoSuper User
Hi Anonymous,
The error is related with formats you nee to take the "" from your IN sintax, because you are converting the values to text, if your column is a number formatted it will not compare.
The answers provided by Anonymous, should work.
Regards,
MFelix
- Anonymous8 years agoNot applicable
Right, both should work.
Case = CALCULATE(COUNTROWS(Case_Data),Case_Data[CaseType] IN {2,61})
Case = CALCULATE(COUNTROWS(Case_Data),CONTAINROWS( {2,62,61},Case_Data[CaseType])
Thanks
Raj- Waall_Ramos4 years agoNew Member
Good solve Anonymous 👏👏👏👏👏👏
- Anonymous8 years agoNot applicable
Thanks for the feedback, appreciated.