Hi all! New to bubble here. Making a job board for remote workers.
I think it’s a simple problem, I just can’t for the life of me figure it out. I have a double slider, and I am using the min & max values as conditionals to filter out a list of jobs based on company employee count. (below)
problem is, I want to use the max value as a special conditional (200+ employees). I want to then filter my list of jobs based on that conditional.
In other words, I want the slider to work for any company that has 0-199 employees, and the moment the upper range hits 200, show any company that also has an employee count above 200.
I would set a conditional on your Repeating group. Normally, the data source is as you have it; but then I’d put a conditional on the repeating group that says:
IF RangeSlider A’s value is ______, then set the Data Source to be everything you typically have, WITHOUT the company size max limit.
Awesome! you’re right! I’ll put your solution as the answer, only thing I’ll add to anyone reading is that I didn’t know that conditionals override the repeating group’s data source constraints. It makes sense, just wasn’t obvious as first glance. May help some other folks to know that.