I use this for LastYTD
ROUND(
SUM(YTD(ParallelPeriod([Invoice Date].[Date Hierarchy].[Year]
, 1
, [Invoice Date].[Date Hierarchy].CurrentMember))
, [Measures].[Revenue]
),
2
)
Now I need full last year, not YTD. How to do that?
UPDATE:
II have tried following but it shows results only on Year level.
ROUND(
SUM(YTD(ParallelPeriod([Invoice Date].[Date Hierarchy].[Year]
, 1
, ClosingPeriod([Invoice Date].[Date Hierarchy].[Year],
[Invoice Date].[Date Hierarchy].CurrentMember)
)
)
, [Measures].[Revenue]
),
2
)
SCREENSHOT

Query 2:
ROUND(
SUM(ParallelPeriod([Invoice Date].[Date Hierarchy].[Year]
, 1
, [Invoice Date].[Date Hierarchy].CurrentMember)
, [Measures].[Revenue]
),
2
)
Results:

UPDATE3:
This is what I need:

I was able to do this with 2 calculations
I hope this can help you.