I would like to write a formula where the intent is for the metric to calculate the average of the prior 3 months of the metric itself.
I envisioned the syntax being something like the following, though it says MOVINGAVERAGE doesn’t support recursive mode.
MOVINGAVERAGE(PREVIOUS(month),3)
I understand that I could use MOVINGAVERAGE without PREVIOUS if the object being averaged was a separate metric, but the use case I have requires the formula to reference metric itself.
Is there any solution or workaround for this?