P.S. Am I not Paul?
This requires black magic though: you need to take the control object of a Slider and mix in a few properties to turn it into a progress bar.
Hereās the single formula. Donāt forget to set column type to Progress Bar. This is a hacky trick that may break any moment (and can even break your doc) so use at your own risk:
ParseJSON(
'{"o":'
+ Slider(thisRow.[Slider input])._Merge(
Object(
"value", thisRow.[Slider input],
"properties", Object(
"displayType", "Progress",
"color", SwitchIf(
thisRow.[Slider input] < 20, "Red",
thisRow.[Slider input] < 50, "Orange",
thisRow.[Slider input] < 80, "Yellow",
"Green"
)
)
)
) + ""
+ '}'
)._Deref_object("o")
Welcome to the Community, @Valentin_Serry!