Forum Discussion
dofrancis3
Resolver I
2 years agoCount with multiple criteria
Hi Guys! Some one can help me please! I would like to count the number of "Pass" and "Fail" how can i dot it please below is my Dax-mesure: NbrDistr = CALCULATE(COUNTROWS(IMrepository),IMrepositor...
- 2 years ago
NbrDistr = CALCULATE(COUNTROWS(IMrepository),IMrepository[Dist_targ_SIA]= "Pass"||IMrepository[Dist_targ_SIA]= "Fail")
dofrancis3
Resolver I
2 years agoThis is the colomn
I would like to have 8
i don't like Count fountion
govindarajan_d
Super User
2 years agoPlease try this:
PassFailCount =
CALCULATE (
COUNTROWS ( IMrepository ),
KEEPFILTERS ( IMrepository[Dist_targ_SIA] IN { "Pass", "Fail" } )
)