This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. We're covering it all. You won't want to miss it.
Learn moreLevel up your Power BI skills this month - build one visual each week and tell better stories with data! Get started
Hi Experts
how would you count multiple items in the same column??? i am trying the following formula slightly stuck..
Case = CALCULATE(COUNTROWS(Case_Data),Case_Data[CaseType]={"2","61"})
i want to count all case type with the following numbers:
2, 61, 67,68, 80, 112,113
Solved! Go to Solution.
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
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
Regards
Miguel Félix
Proud to be a Super User!
Check out my blog: Power BI em PortuguêsThanks for the feedback, appreciated.
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
Good solve @Anonymous 👏👏👏👏👏👏
Check out the April 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 36 | |
| 33 | |
| 26 | |
| 24 | |
| 17 |
| User | Count |
|---|---|
| 70 | |
| 50 | |
| 31 | |
| 26 | |
| 22 |