Hey
Little stuck with something.
I've got a SP list, with a choice column with 3 values "A" "B" "C"
I have another choice field with 9 choices, "A1", "A2", "A3", "B1", "B2", "B3", "C1", "C2", "C3"
When "A" is selected I want only Values A1-A3 to appear in the other drop down (this works for me).
When I try to add more than one condition it doesn't work.
If(DataCardValue10.Selected.Value = "A", Choices([@List].Column), ["A1", "A2", "A3"]),
If(DataCardValue10.Selected.Value = "B", Choices([@List].Column), ["B1", "B2", "B3"])
I also need to cater for if "A" and "B" are selected, then I need to see both A choices and B choices, and if "A", "B" and "C" are selected then by default show everything