Hi,
I would like to ask if somebody could help me with this problem. I have a form with 5 dropdown menus which are generated from the SharePoint list data. In my SharePoint list I have a lot of different choices so I wanted to make a way which would filter the possible answers from following dropdown menus based on the answer from previous one.
Simply said: If I choose answer1 in dropdown1, it will filter possible answers in dropdown2.
I have this code which I pasted in dropdown2 (Items property). It works well but if replicate the process to dropdown3 I get error.
The part that is always red is: "Text(DataCardValue18.Selected.Value)". Could anybody please help me with it?
Thanks
If(
Text(DataCardValue17.Selected.Value) = "FRONT";["X1"; "X2"; "X3"; "X4"; "X5"];
Text(DataCardValue17.Selected.Value) = "REAR";["X6"; "X7"; "X8"; "X9"; "10"];
[]
)