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

Announcements
Qlik GA: Multivariate Time Series in Qlik Predict: Get Details
cancel
Showing results for 
Search instead for 
Did you mean: 
chriscammers
Partner Ambassador
Partner Ambassador

Single Value, Variable based, Slider Sort order

I have a slider using a variable for value in a what-if scenario. I am showing the slider oriented vertically. I'd like the values on the slider to sort descending from top to bottom. The default behaviour is to sort ascending from top to bottom. I've tried inverting the min and max values and using a negative step value.

3 Replies
Not applicable

It's kind of a kludgy solution, but how about making your values negative.
Min: -10
Max: 0
Static Step: 1

Then format it as Money and use the format:

#,##0.;#,##0.
That way, the values appear to be positive and will be sorted in descending order.

Then you would probably want another variable that was your slider variable times -1 and use that in your expressions to hold the correct intended slider value.

chriscammers
Partner Ambassador
Partner Ambassador
Author

That would work but my range is from -.05 to .05

Thanks for thinking about it though.

I appreciate it.

Not applicable

The same idea would work in that situation.
Min: -.5
Max: .5
Static Step: .1

Money Format: -#,##0.0;#,##0.0

Then you still need the second variable to multiply the value by -1.