Stop averages going into the future -
04-12-2004
, 08:01 AM
I have defined the average as
Iif(
Count(LastPeriods(4,[Time].[FiscalYW].CurrentMember))<4,
null,
SUM(LastPeriods(4,[Time].[FiscalYW].CurrentMember ),
([Trend].&[No Trend]) )
/4
)
If the latest week of data is wk 7 fiscalyr 2004 then
calculated member also generates an average for wk 8,9 and
10. how should the formula change to exclude these future
weeks. |