Hey folks. I’ve got a bit of an issue that I’m struggling to get my head around:
I’ve got a series of sliders in a repeating group that I would like my users to set. I can get the value no problem, push it into the DB with no problems, and even calculate a sum (stored as a number) of all the values with no issues (I love bubble).
The issue I have is that I need to populate a second field in the same data type that is conditional on the number I set in the “sum” above. I need it to do something like:
if num_field < 50
text_field = "Low"
if num_field >= 50 and if num_field <75
text_field = "Medium"
if num_field >=75
text_field = "High"
…I just don’t know how to do something like that. Anybody have any ideas?
TIA!
Steve