Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi Experts
I want to set red color to % column values (last column in straight table) when the values are greater than a given percentage(say >10%) and then allow the user to change the percentage using slider and want to set initially 10% by default.
I hope i can do this by creating a variable, but not sure.
Pls help.
Hi Suraj
First you need to creat a variable
LET vPrctg = 10;
Use "input field" object to display your variable
There is the place where the user can miodify value vPctg.
Use $(vPctg) in your table in background color for your considerated field like
if (YourFieldPctg) > $(vPctg), green(), red()
best regards
Chris
PFA
Hi Pradip,
Thanks for the help.
But, your app doesnt contain the slider to change the percentage dynamically.