Forum Discussion
Arunravi0001
2 years agoFrequent Visitor
Need Help
Hi Everyone ! I'm seeking for solution for below scenario i have table like this Requirement :Find out Count of "Positive" Word Occurrence in Above tabl...
- 2 years ago
Hi Arunravi0001 check new version below.
Test count =IF (Sheet1[Type] = "Positive",CALCULATE (COUNTAX ( FILTER ( Sheet1, Sheet1[Type] = "Positive" ), Sheet1[Type] ),ALLEXCEPT ( Sheet1, Sheet1[ID] )),0)Did I answer your question? Kudos appreciated / accept solution!
some_bih
2 years agoCommunity Champion
Hi Arunravi0001 possible solution as following calculated column
Test count =
IF (
Sheet1[Type] = "Positive",
CALCULATE (
COUNTAX ( FILTER ( Sheet1, Sheet1[Type] = "Positive" ), Sheet1[Type] ),
ALLEXCEPT ( Sheet1, Sheet1[ID] )
)
)
Did I answer your question? Kudos appreciated / accept solution
Arunravi0001
2 years agoFrequent Visitor
- Arunravi00012 years agoFrequent Visitor
Thanks for this some_bih 🙂
- some_bih2 years agoCommunity Champion
Hi Arunravi0001
If this is solutin, accept so other member of community could use it. Thx
- some_bih2 years agoCommunity Champion
Hi Arunravi0001 please describe which criterias should be matched to get the figures as your overview- first occurance of Sample ID and Type is "Positive" or ...what about Sample3 and value 0?
- Arunravi00012 years agoFrequent Visitor
hi some_bih yes ,Sample ID and Type is "Positive" , should be counting , if Negative Returns "0"
- some_bih2 years agoCommunity Champion
Hi Arunravi0001 check new version below.
Test count =IF (Sheet1[Type] = "Positive",CALCULATE (COUNTAX ( FILTER ( Sheet1, Sheet1[Type] = "Positive" ), Sheet1[Type] ),ALLEXCEPT ( Sheet1, Sheet1[ID] )),0)Did I answer your question? Kudos appreciated / accept solution!