
i have created gallery from Sharepoint, which contains Person/Group Coloumn which contain user Profile.
Now i want to filter gallery by using dropdown filter.
in Dropdown Item property i added this code : Choices(' Tracker'.Assignedperson)
in Gallery Item property i added this code :
Filter(
'Tracker',
Assignedperson.Email=Dropdown1.Selected.Email)
but this not working ,dropdown not expanding to choose value.
any idea how to fix this ?
Hi @venky232 ,
Maybe you could try the following formulas:
Distinct(AddColumns('Tracker'.Assignedperson,"useremail",Assignedperson.Email),useremail)Filter('Tracker',Assignedperson.Email=Dropdown1.Selected.Result)
Best Regards,
Charlie Choi