Returns a single column table of dates that are shifted (offset) by a specified time period either forward or backward in time.
Use with CALCULATE to return revenue from two months ago and revenue next month in the current context.
Revenue_Two_Months_Ago = CALCULATE(SUM(TransactionData[Revenue]),PARALLELPERIOD(CalenderDate[Date],-2,MONTH))
Revenue_Next_Month = CALCULATE(SUM(TransactionData[Revenue]),PARALLELPERIOD(CalenderDate[Date],1,MONTH))
PARALLELPERIOD always returns full periods at the given level of granularity. It only works on YEAR, QUARTER and MONTH level.