I have three years actual data. I want actual vs actual on the behalf of this expression - (Sum(Current Year Actual Value) - Sum(Previous Year Actual Value)) / Sum(Previous Year Actual Value).
I'm not absolutely sure but I think there isn't a way to show this with one expression. The common approach to compare different time-periods in a single object is to use several expressions (instead time-periods as dimension) like these:
sum({< Year = {$(=max(Year))} > } Value) // current
sum({< Year = {$(=max(Year)-1)} > } Value) // previous
sum({< Year = {$(=max(Year))} > } Value) - sum({< Year = {$(=max(Year)-1)} > } Value) // deviation