Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello Folks,
Is there way that I can tell a Table to ignore user selections in a dimension? I know how to do this in a Measure, but I'm not quite sure how to do this in a Dimension.
For example I have a dataset similar to the attached file (QAssist.txt). On top of that, I have a UI that looks like so:
How do I make it so the user can select the {Year(JoinedTheUnion) = 1788} and still show the state of Delaware in the Statename column.
Create Year(JoinedTheUnion) as Year and then use Year as filer and this as expression Avg({<Year>} 1)
Add a measure to this table
Avg({<JoinedTheUnion>} 1)
and this should prohibit Statename to go away
Unfortunately, it still takes it away when I select the year.
Try this.
Avg({<JoinedTheUnion=>} 1)
It seems stalwar1 forgot to mension '='.
Regards,
Kaushik Solanki
Create Year(JoinedTheUnion) as Year and then use Year as filer and this as expression Avg({<Year>} 1)
Thanks stalwar1 , the issue I had was that it has to be a datamodel field, and not one that is "calculated" on the fly.