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

Announcements
Join us to spark ideas for how to put the latest capabilities into action. Register here!
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Can I hardcode the bar graph visualization?

Hello All,

I want to hardcode the bars in the bar graph visualization, Is there any possible way to do it.

I want to hardcode it on measure expression side.

1 Reply
sunny_talwar

You can, using ValueList() or ValueLoop() functions as dimension and Pick(match()) or If statement in your expression. Example

Dimension

ValueList('High', 'Low')

Expression

Pick(Match(ValueList('High', 'Low')), 'High', 'Low'), 100, 50)