Forum Discussion
Anonymous
3 years agoNot applicable
Need count based on measure value
HI, i need count of value per date but the value is coming from a measure. as you can see below we have diff dates and value for each day. value is coming from a different dax measure. so i wa...
- 3 years ago
Hi Anonymous
Please tryCount = SUMX ( VALUES ( 'Table'[Date] ), IF ( [Value] > 45, 1 ) )
visheshjain
Impactful Individual
3 years agoHi Anonymous,
Try the following method,
CALUALTE( COUNTROWS(Date[Date]), FILTER(Date[Date], Measure>45))
Hope this works out for you and if it doesn't, please share a PBIX.
Thank you,
Vishesh Jain
Anonymous
3 years agoNot applicable
visheshjain appriciate your time on this, it is not working as i expected. but thanks for your time.