Skip to main content
Announcements
Introducing Qlik Answers: A plug-and-play, Generative AI powered RAG solution. READ ALL ABOUT IT!
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

1 Solution

Accepted Solutions
Kushal_Chawda

Use this

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

View solution in original post

3 Replies
Kushal_Chawda

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