Forum Discussion
joshua1990
Post Prodigy
4 years agoCOUNT Weeks with Value between Levels
Hi experts! I have a simple DIVIDE Measure (Measure x) that shows me the Ration between two different measures: DIVIDE ([Measure 1], [Measure 2]). Now I would like to get the number of weeks wh...
- 4 years ago
Please try
Number of Weeks < 0.075 = COUNTROWS ( FILTER ( VALUES ( 'Calendar'[Week] ), [Measure X] >= 0 && [Measure X] < 0.075 ) )
tamerj1
Community Champion
4 years agoPlease try
Number of Weeks < 0.075 =
COUNTROWS (
FILTER ( VALUES ( 'Calendar'[Week] ), [Measure X] >= 0 && [Measure X] < 0.075 )
)