This content has been marked as final.
Show 4 replies
-
1. Re: Choosing all or a set
Michael Someck Mar 20, 2017 10:47 AM (in response to David Recuero Guerra)Hi David,
There are multiple ways to do this. Here's one:
Create a parameter, which I titled "View", with the two options you want:
Then, I created a set of the 5 "Operating Result" concepts. Finally, I used the following calculated field:
if [View]=0 then [Concept]
elseif [Operating Result] then [Concept]
END
and filtered so that it shows all values. I've attached a workbook, but it's v10.2. Hope it's helpful—let me know if you have any questions.
Michael
-
Choosing sets.twbx 30.3 KB
-
-
2. Re: Choosing all or a set
Michael Someck Mar 20, 2017 10:50 AM (in response to Michael Someck)1 of 1 people found this helpfulActually, slightly simple calculated field (that you would use to filter=True) is
[View]=0 OR [Operating Result]
-
3. Re: Choosing all or a set
David Recuero Guerra Mar 20, 2017 11:03 AM (in response to Michael Someck)Thanks a lot! It worked perfectly
-
4. Re: Choosing all or a set
Michael Someck Mar 20, 2017 11:12 AM (in response to David Recuero Guerra)My pleasure! Glad to help