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
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
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)
)
Pointer:
LIST(A, B)
Hi, where did you put the code to solve it?
worked for me putting it in valid if