In a Pivot Table we have given two expression and it is showing for all the years. We want to dispaly the second expression only for the current year (i.e 2012).
Is there any option of doing this. (other than going with the calculated dimension)
I have attached the sample copy of QVW for reference.
I think it's not possible to remove your count expression only for some years. If you use an expression in a pivot chart, it must be used for all dimension.
You can calculate count() only for present year and show null() for other years.
Write this :
if([Processed Year]=year(today()), count(Name))
If you really want to achieve that, use a simple tab and write an expression for each year :