Hi @MP4249 ,
Are all these fields text column type in SharePoint list?
Assume that they are all text fields then:
Please add a "" value in these 3 dropdown controls. For example, set below formulas in the Dropdown1 control:
["Choice 1","Choice 2","Choice 3",""]
Then set below formula in the Items property of the gallery:
If(Dropdown1.Selected.Value="",Filter(SPList,YOB = Dropdown2.Selected.Value,Ethnicity = Dropdown3.Selected.Value,Connection = Dropdown4.Selected.Value),Dropdown2.Selected.Value="",Filter(SPList,County = Dropdown1.Selected.Value,Ethnicity = Dropdown3.Selected.Value,Connection = Dropdown4.Selected.Value),Dropdown3.Selected.Value="",
Filter(SPList,County = Dropdown1.Selected.Value,YOB = Dropdown2.Selected.Value,Connection = Dropdown4.Selected.Value),Dropdown4.Selected.Value="",Filter(SPList,County = Dropdown1.Selected.Value,YOB = Dropdown2.Selected.Value,Ethnicity = Dropdown3.Selected.Value),Filter(SPList,County = Dropdown1.Selected.Value,YOB = Dropdown2.Selected.Value,Ethnicity = Dropdown3.Selected.Value,Connection = Dropdown4.Selected.Value))
Regards,
Mona