Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
on my Dash I have a slider which increases all values but I would like to have targeted changes too.
I would like to add a slider for each product group. How would I do this?
Hi @RichardLee , maybe this is an option?, you have to create your variables and sliders first
SUM(Value) * 1 + (
if(Group = 'Adv-EI', $(vSilderAdvEI),
if(Group = 'Adv.-EW', $(vSilderAdvEW),
if(Group = 'Adv-Other', $(vSilderAdvOther),
if(Group = 'EI', $(vSilderEI),
if(Group = 'EW', $(vSilderEW),
if(Group = 'Other', $(vSilderOther)
))))))
)
Hi, you can create a variable for each product group and add a slider for each variable, then use the variable in the expressions to see the impact on your data while you move the sliders.
Hi @RichardLee , maybe this is an option?, you have to create your variables and sliders first
SUM(Value) * 1 + (
if(Group = 'Adv-EI', $(vSilderAdvEI),
if(Group = 'Adv.-EW', $(vSilderAdvEW),
if(Group = 'Adv-Other', $(vSilderAdvOther),
if(Group = 'EI', $(vSilderEI),
if(Group = 'EW', $(vSilderEW),
if(Group = 'Other', $(vSilderOther)
))))))
)