Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

Chart Min and Max Axes Properties

Hi

Is there a way to get the minimum and maximum value of the x and y axes of a chart in qlikview. I want to use these to set the min and max in another chart.

Thanks.

Joao.

1 Solution

Accepted Solutions
kaushiknsolanki
Partner Ambassador/MVP
Partner Ambassador/MVP

Hi,

     Simply copy the expression from the other chart.

     Say if the expression is Sum(Amount)

     Then create an expression for Min x value of other chart as

     Min(Aggr(Sum(Amount),Dimension)

     for max as

     Max(Aggr(Sum(Amount),Dimension)

Regards,

Kaushik Solanki

Please remember to hit the 'Like' button and for helpful answers and resolutions, click on the 'Accept As Solution' button. Cheers!

View solution in original post

2 Replies
kaushiknsolanki
Partner Ambassador/MVP
Partner Ambassador/MVP

Hi,

     Simply copy the expression from the other chart.

     Say if the expression is Sum(Amount)

     Then create an expression for Min x value of other chart as

     Min(Aggr(Sum(Amount),Dimension)

     for max as

     Max(Aggr(Sum(Amount),Dimension)

Regards,

Kaushik Solanki

Please remember to hit the 'Like' button and for helpful answers and resolutions, click on the 'Accept As Solution' button. Cheers!
Anonymous
Not applicable
Author

Excellent. This works.

Thank you.