Hi,
Is it possible to filter dropdown choices from SP List if a specific condition is met?
E.g if dropdown1 is value1 then dropdown 2 will filter the dropdown options?
What I have so far -
If(drpRec_Stream.Selected.Value = "SSE",
Filter(Choices(INB_BOF.Location), Value = "Barby, DE" || Value = "Krefeld, DE"))
What I need -
If(drpRec_Stream.Selected.Value = "SSE",
Filter(Choices(INB_BOF.Location), Value = "Barby, DE" || Value = "Krefeld, DE"))
OR
If(drpRec_Stream.Selected.Value = "CTS",
Filter(Choices(INB_BOF.Location), Value = "Baupte, FR" || Value = "Malchin, DE"))
Any help is appreciated!
Thanks