Conditionally showing enum values

Hello;
With respect to conditional display, [item1]: number is [item2]: when enum (A, B, C, D);

ifs [item1] = 10, [item2] = A and B (show),
ifs [item1] = 20, [item2] = C and D (show)

how can I do this, so not all values will be shown in enum

0 4 2,100
  • UX
4 REPLIES 4

I believe youโ€™re wanting a dependent dropdown:

Thanks, I solved

IFS([item1]=โ€œ10โ€,LIST(A, B),
OR([item1]=โ€œ20โ€,[item1]=โ€œ30โ€);LIST(C,D)
)

Hi, where did you put the code to solve it?

worked for me putting it in valid if

Top Labels in this Space