Hi Community!
I have a validation use case that I don’t know how to implement. My users need to select three values consecutively , where the available options for the second depend on the first choice, and the options for the third then again depend on the second choice. Like so :
- Car Make 2. Car Model 3. Model Year
The total number of possible combinations in my case is about 4300. I considered just concatenating them and putting them all in a single select field to keep it simple (this field is not used much), but the max seems to be somewhere around 3000, so at best I can get away with two steps, not three.
Thanks for any suggestions!