Variable Result from a Slider
-
Hi,
Thank you for your support always.
I have a created a slider with range number 1 – 1,000,000.
I want a result where a particular range will be multiplied by a number I defined. For instance if 1 – 10, 000 is selected, the result will be (1-10,000)* 2 and if (10001 – 50,000) is selected the result will be (1-10,000)*2 + (10001 – 50,000)*3
So I created this formula
IF( fieldname1<10000, fieldname1*2,fieldname1>10000, fieldname1*3 )
It works for the first part of <10000 but once it gets above 10000it returns ‘true’ as the answer. Please can you help me with it.
I still want to create more rules for milestones like 100, 000, 500, 000 etc.
The page I need help with: [log in to see the link]
The topic ‘Variable Result from a Slider’ is closed to new replies.