Forum Discussion
thliberato
9 years agoHelper I
Dynamic Graph month
I have a calendar filter to choose a month. I have a bar Graph with quantity tickets x System Name X Month. I need show in this graph the last 12 months considering the month selected in filter. ...
austinsense
9 years agoImpactful Individual
https://msdn.microsoft.com/en-us/library/ee634539.aspx
=CALCULATE( [whatever_measure_you're_using],
DATESINPERIOD(Calendar(Date], MAX(Calendard[Date]), -12, MONTH)
)