Forum Discussion
LauraCawdronDav
Helper I
3 years agoThis 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" )
DataInsights
Super User
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"
)