I am currently Filtering my gallery as follows:
Filter(TestDominic2,Lower('Created By'.Email)=Lower(User().Email))
I would like to also now filter further based on the choice from a drop down control i have created from a SP choice column: Choices(TestDominic2.'Review Status')
Thanks in advance
Hi @BenGillard,
Based on the needs that you mentioned, I have made a test on my side, please take a try with the following workaround:
Set the Items property of the Gallery to following:
Filter(
TestDominic2,
Lower('Created By'.Email) = Lower(User().Email),
'Review Status'.Value = Dropdown1.Selected.Value /* <-- Dropdown1 represents the Dropdown control that you mentioned*/
)
Or
Filter(
TestDominic2,
Lower('Created By'.Email) = Lower(User().Email) && 'Review Status'.Value = Dropdown1.Selected.Value /* <-- Dropdown1 represents the Dropdown control that you mentioned*/
)
More details about Filter function, please check the following article:
Best regards,
Hi @BenGillard
You can filter your data like so:
Filter(TestDominic2, Lower('Created By'.Email)=Lower(User().Email) && 'Review Status'.Value = Dropdown1.Selected.Value)
)
Dropdown1 would refer to the name of your dropdown.
Due to the delegation limitations of SharePoint, note that this would not be delegable and the filter would only operate on a maximum of the first 2000 records in your list.
WarrenBelz
146,524
Most Valuable Professional
RandyHayes
76,287
Super User 2024 Season 1
Pstork1
65,906
Most Valuable Professional