Forum Discussion
Schwurblini
3 years agoFrequent Visitor
Filter between two values
Hi All I am trying to count between two values, specifically i want to count all values between 5 and 10. I created the following measure: More than 5 per month = CALCULATE ( COUNT('Weekly...
- 3 years agoMore than 5 per month =CALCULATE (COUNT('Weekly Sales'[All Topnodes]),FILTER('Weekly Sales', (COUNT('Weekly Sales'[All Topnodes]) >= 5 && COUNT('Weekly Sales'[All Topnodes]) < 10 )))
Schwurblini I hope this post is helps.
FreemanZ
3 years agoSuper User
hi Schwurblini
try like:
5To10Count :=
COUNTROWS(
FILTER(
TableName,
TableName[AllTopNodes]>=5
&&TableName[AllTopNodes]<=10
)
)