Value from select input dropdown

I have a select input dropdown in a repeating row (in a table). I am trying to update the database when I choose a different option. How do I get the new value from the select input? It seems like it should be easy but I can’t find it.

I figured it out. I was trying to use the on change event value directly but it seems to be a text value. So I stored it in a variable first with a number type and used that to update the database.

you can do Number([variable]) to transform it into a number instead of storing it first

1 Like