Right now dropdown fields in forms are static, which makes it difficult to handle situations where one field should depend on another.
It would be really useful to have the ability to make one dropdown update based on the selection in a previous dropdown.
For example:
If Dropdown A = “A”, then Dropdown B shows: A, B, C
If Dropdown A = “B”, then Dropdown B shows: D, E, F
If Dropdown A = “C”, then Dropdown B shows: G, H, I
Without this, the only options are either:
showing a long list of all possible values (which is hard for users and prone to mistakes), or
using a text field, which leads to inconsistent data
This creates extra cleanup work and makes automations less reliable.
Even a basic version of dependent dropdowns would make a big difference in keeping data clean and improving the form experience.