I am currently working with multiselect cascading dropdown value.
SharePoint list configuration.
In Customer List, i have populate value for Make based on customer list
1. Make dropdownlist
Choices([@'Customer'].Make)
Now I would like to filter second dropdownlist called Model based on Multiple selected value in Make dropdownlist.
i.e if User select Toyota, Mazda in Make dropdownlist, it will populate all model values based on Toyota and Mazda
Customer list
Make (multichoice lookup table from Car list)
Model (multichoice lookup table from Car list)
Car list
Make(Text field)
Model(Text field)
Make Model
| Toyota | Hilux |
| Toyota | Kluger |
| Toyota | Prius |
| Mazda | CX9 |
| Mazda | CX7 |
| Mazda | CX5 |
| Honda | Civic |
| Honda | Odessey |
I have the following filter on Items
Filter(Choices([@'Customer '].Make), Id in Filter(Choices([@'Customer '].Model), Value = Model.Selected.Value).Id)