Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
So the slider should start and show 1% and the next be 25% and the next be 50% and 75% and 100%
create avariable called
vSlider and add a value of 1
In the general tab set min, max and static as

In the Number tab choose Number and show in %
It will look like this

missing the 1 %, can't figure that out
Please See attached
Hi Chris,
The problem that you have here is that you are trying to get irregular gaps between your increments. If you go from zero then there will be a regular number in each segment and all will be good (as in the above example).
I think if you absolutely need to go 1%, 25%, 50%, 100% I would create a slider that goes from zero and then remove the legends (on the Presentation tab set the Labels on Every n Major Units to 0). You can then use text boxes to put on the legends you require.
When you come to use the variable though you will need to code for the fact that 1 will be represented as 0, eg:
if(vSlider = 0, 1, vSlider)
Hope that explains what the issue is and gives you some pointers how to get around it.
-Steve
Maybe like one of these sliders?