This content has been marked as final.
Show 3 replies
-
1. Re: how to show this table that includes missing values (indicated by 0s) the way I wanted after applying a filter
Tracy RodgersMay 10, 2012 12:08 PM (in response to Xiaorong Li)
1 of 1 people found this helpfulHi Xiaorong,
The only way I've been able to get around this is to Hide all the unwanted rows. Might be a good one for the Ideas section.
-Tracy
-
2. Re: how to show this table that includes missing values (indicated by 0s) the way I wanted after applying a filter
Xiaorong Li May 10, 2012 2:15 PM (in response to Tracy Rodgers)1 of 1 people found this helpfulThanks anyway Tracy.
-
3. Re: how to show this table that includes missing values (indicated by 0s) the way I wanted after applying a filter
Damian Jordan Dec 8, 2012 9:55 AM (in response to Xiaorong Li)Yes you can do this. Since you want to always show a data point you must NOT use a filter.
Instead, you need to create calculated fields that either show zero or the value for a given year.
1. Create a parameter that contains years
2. Create a calculated field such as
if year([Report_date]) = [My Year Parameter] then [value_column] else 0 end
By using the parameter and the calculated field you will now be able to see all columns in you viz.
Damian