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.
Mahesh0016
3 years agoSuper User
More 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.
Schwurblini I hope this post is helps.
- Schwurblini3 years agoFrequent Visitor
Amazing thanks, i knew there was something i overlooked, thanks for the fast response.