SHIFT
Last updated
Was this helpful?
The SHIFT formula returns the date after shifting a date either backwards or forwards by a specified time period, like a month, quarter, or year.
SHIFT(inputDate, <offset interval>)inputDate– The date to be shifted. Required.
offset interval - The preset format model, like month("M"), quarter("Q) or year("Y"). Required.
Returns a date after shifting the input date by the specified number of months, quarters, etc.
SHIFT(CURRENT_PERIOD, "2M")
//Shifts the date by 2 months
SHIFT(TODAY(), "6M")
//If the current date is 01/09/2023, it returns 01/03/2024We've used SHIFT to shift each month by 2 months. For example, for January, the SHIFT function returns March 01st.

You can also use SHIFT with forecast open and closed periods. In this example, we've shifted the forecast open period end date backwards by 2 quarters.

Last updated
Was this helpful?
Was this helpful?