Forum Discussion
SniperPro
3 years agoFrequent Visitor
Calculating YTD while keeping Month filter
I have bellow table data: I want to add a measure calculating the YTD of Value so I added this measure : Mesure = CALCULATE(SUM('Table'[Value]), DATESYTD('Calendar'[Date])) Then in my...
FreemanZ
Super User
3 years agohi SniperPro
try like:
Mesure =
CALCULATE(
SUM('Table'[Value]), DATESYTD('Calendar'[Date]),
ALL('Table'[Product])
)
it seems you want to ignore the Product filter, but why adding it in the visual?