Skip to main content
Announcements
Have questions about Qlik Connect? Join us live on April 10th, at 11 AM ET: SIGN UP NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
spinchuk
Partner - Contributor III
Partner - Contributor III

Limit Dimension to one possible value

Guys, is there a way to arbitrarily limit dimension in pivot table to only one value? Does not matter which one, but need to display only one.

Pivot.GIF.gif

The desired outcome would be removing Mary (or Jim) from the pivot:

Contract     Manager     Value

123               Jim              50

As alternative, is it possible to combine Jim and Mary into one sell?

Thank you!

1 Solution

Accepted Solutions
rwunderlich
Partner Ambassador/MVP
Partner Ambassador/MVP

To use it as a Calc Dimension, just wrap in aggr() using the dimension(s) to the left in the chart:

=aggr(Concat(Manager, ','), Contract)

-Rob

View solution in original post

3 Replies
rwunderlich
Partner Ambassador/MVP
Partner Ambassador/MVP

=concat(Manager, ',')

will combine into one.

=MinString(Manager)

will pick the first one.

-Rob

spinchuk
Partner - Contributor III
Partner - Contributor III
Author

Rob, thank you for reply. Is it possible to implement this as calculated dimension? As the "Manager" being the calculated dimension.

rwunderlich
Partner Ambassador/MVP
Partner Ambassador/MVP

To use it as a Calc Dimension, just wrap in aggr() using the dimension(s) to the left in the chart:

=aggr(Concat(Manager, ','), Contract)

-Rob