Why can't I view the value for earlier years say 2009, using Yearly Period filter?
Modify 'ARC194' query in the admin warehouse xml file, as follows: ARC194 SELECT DISTINCT YEAR, YEAR_NAME FROM DIM_DATE WHERE YEAR >= (select year-1 from dim_date where date_fld='#lastEtlDate#') AND YEAR <= (select year from dim_date where date_fld='#lastEtlDate#') AND year <> 9999 order by year desc In the above query, modify "select year-1" as per your requirement. To view the previous year's data, keep it as "select year -1). (For example, If the current year displayed in the Yearly filter is 2010 and the desired year is 2008. Modify it as "select year-2".)