Forum Discussion
amandabus21
Helper V
3 years agoYears past data
How can I get the total of a previous year on an automated basis? Im looking to have report that is always displayin gall of last years data, on an automated basis. For example show all of las...
FreemanZ
Super User
3 years agohi amandabus21
try like:
Measure =
CALCULATE(
[Accidents per 100k Miles],
YEAR('Datamart AccidentSummary'[Merged FC]) = YEAR( MAX('Datamart AccidentSummary'[Merged FC]))-1
)
amandabus21
Helper V
3 years agoThis givs me a total of all not the specific year. I need a display of this year and last year.