Forum Discussion
LauraCawdronDav
3 years agoHelper I
This year date filter
Hiya, I've made a filter to measure all the opportunities we've "won" this year as follows: Calculate( SUM('3. Opportunities'[Estimated Value]), '3. Opportunities'[Close Date - Copy] >= DATE(...
- 3 years ago
Try this measure:
Opportunities Won = CALCULATE ( SUM ( '3. Opportunities'[Estimated Value] ), '3. Opportunities'[Close Date - Copy] >= DATE ( YEAR ( TODAY () ), 1, 1 ), '3. Opportunities'[Status: won, lost, open] = "Won" )
LauraCawdronDav
3 years agoHelper I
That's perfect thank you so much!