Is there a way to make a card move group dependent on slider position? Let’s say a slider.on a card is set to 0% and it is auto put into “starting”, 55% is moved into “processing” and 100% into group “Processed”
Sure!
You just need a helper column for this.
So you’ll have your slider column (we’ll call it Status)
And then you can add another Select List column called StatusGroup with the formula:
SwitchIf(Status<55, "Starting", Status>=55, "Processing", Status=100, "Processed")
You can then group by StatusGroup and Bob’s your uncle.
1 Like
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.