Forum Discussion
hellyLoft
6 years agoFrequent Visitor
Countrows les then and more than a value
Hello, I am trying to create a measure which will count the number of rows in a column that have a number of less than 36 and more than 36 (but not any that are 36). MidYearAdm = CALCULATE(COUNT...
- 6 years ago
hellyLoft , Try like
MidYearAdm = CALCULATE(COUNTROWS('Pupil'[week number]),filter(Pupil,Pupil[week number] <36 || Pupil[week number] >36 ))
amitchandak
Super User
6 years agohellyLoft , Try like
MidYearAdm = CALCULATE(COUNTROWS('Pupil'[week number]),filter(Pupil,Pupil[week number] <36 || Pupil[week number] >36 ))