Hello!
I am hoping that some more experienced users could help me out here.
I have created a form in canvas PowerApps that connects to SP list. In SP list, one of the columns are defined as "Person or Group", which means it automatically searches for names while typing. And that is ok. In PowerApps FORM it appears as COMBOBOX and its ITEM is defined as "Choices(SP_list.'Responsible (s)')". The issue here is that in the FORM I would like to limit suggested names. So I tried to do filtering such as ITEM=Filter(Choices(SP_list.'Responsible (s)'), Department="xxx"), also ITEM=Filter(Choices(SP_list.'Responsible (s)'), "xxx" in Department). Now, during search no options (or suggestions) are displayed. Alternatively, I tried to use function "Depends on" (Before that I created a dropdown with few department names). So it automatically corrects input such as ITEM=Filter(Choices(SP_list.'Responsible (s)'), Department = Dropdown15.Selected.Value). In this case, during search dropdown appears, but data, as initially, are unfiltered.
Question: Is there a way to filter suggested names during search?