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

Announcements
Save $650 on Qlik Connect, Dec 1 - 7, our lowest price of the year. Register with code CYBERWEEK: Register
cancel
Showing results for 
Search instead for 
Did you mean: 
chaorenzhu
Creator II
Creator II

Intuitive way to navigate to multiple alternative measures

Hi, 

Basically I have multiples bar charts with the same dimension and the only change is the measure used. Instead of plotting a lot of repetitive charts I want to present it more neatly. I know there is alternative measure but the users don't like it as they find it difficult to choose the desired measure among multiple measures. I'm thinking of using buttons and link each button to an alternative measure, but couldn't find such solution. Any one can advise how can I achieve that (may not be button, could be any other solution as long as it's an intuitive way to click some easily noticeable icon to switch to a different chart with the same dimension but different measure?

Thank you!

1 Solution

Accepted Solutions
abhijitnalekar
Specialist II
Specialist II

Hi @chaorenzhu,

You can do this by using the variable input component 

and use the expression for the chart as below.

=if(vyeart='1T',
Sum([#TransactionCount]),

if(vyeart='2S',
Sum([#RPTGrossAmount]*ConvertRate),

if(vyeart='3A',
(Sum([#RPTGrossAmount]*ConvertRate)
/Sum( [#TransactionCount]))

))))

  

Regards,
Abhijit
keep Qliking...
Help users find answers! Don't forget to mark a solution that worked for you!

View solution in original post

2 Replies
abhijitnalekar
Specialist II
Specialist II

Hi @chaorenzhu,

You can do this by using the variable input component 

and use the expression for the chart as below.

=if(vyeart='1T',
Sum([#TransactionCount]),

if(vyeart='2S',
Sum([#RPTGrossAmount]*ConvertRate),

if(vyeart='3A',
(Sum([#RPTGrossAmount]*ConvertRate)
/Sum( [#TransactionCount]))

))))

  

Regards,
Abhijit
keep Qliking...
Help users find answers! Don't forget to mark a solution that worked for you!
chaorenzhu
Creator II
Creator II
Author

Thanks a lot! Very helpful trick