Forum Discussion
Anonymous
7 years agoNot applicable
Count values that match criteria
Hello, I am trying to count how many "Wrong Worksets" I have on a table. The result should be 3. But this formula is counting 9 CT Worksets Non-Standard = COUNTAX('Worksets2-4','Worksets2-4'[...
- 7 years ago
Anonymous following measure should work but reason you are getting blank because there is no "Wrong Workset" value in worksetname column, I guess you want to use "CT Workset Check" column in your measure
CT Worksets Non-Standard 2 = CALCULATE(COUNTROWS('Worksets2-4'),'Worksets2-4'[CT Workset Check]="Wrong Workset")
parry2k
Super User
7 years agoAnonymous following measure should work but reason you are getting blank because there is no "Wrong Workset" value in worksetname column, I guess you want to use "CT Workset Check" column in your measure
CT Worksets Non-Standard 2 = CALCULATE(COUNTROWS('Worksets2-4'),'Worksets2-4'[CT Workset Check]="Wrong Workset")- Anonymous7 years agoNot applicable