I am using the below to calculate 5 months Average Cycle Time. However, this is considering current motnh’s Cycle Time As well. How can I calculate last 6 months Cycle Time excluding current month?
Avg(Filter(
DescendantsSet([Time].CurrentMember,[Time].[Month]),
5) ,
[Measures].[Avg Cycle Time]
)