Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Group Dimension Dynamic Axes

Hello,

I was wondering if anyone would know how can i make my Axes dynamic, in the type of Max(Aggr(Exp,Dim)), but when that Dim is a group.

I cant define there a particular dimension because its a group, and when the selected dimension on the group switches, i would like to swtich the Dim as well.

Is there any way to do this?

Thank you

Labels (1)
1 Solution

Accepted Solutions
Kushal_Chawda
MVP
MVP

Use this

Max(Aggr(Exp,$(=getcurrentfield([YourCyclicGroupName]))))

View solution in original post

3 Replies
Kushal_Chawda
MVP
MVP

Use this

Max(Aggr(Exp,$(=getcurrentfield([YourCyclicGroupName]))))

lironbaram
Partner - Master III
Partner - Master III

you could use a variable

let call is vDim you set the variable with this expression

=Getcurrentfield(yourdim)

and the axes function will be Max(Aggr(Exp,vDim))

Not applicable
Author

thanks alot