web
You’re offline. This is a read only version of the page.
close
Skip to main content

Announcements

News and Announcements icon
Community site session details

Community site session details

Session Id :
Power Apps
Answered

Filtering

(0) ShareShare
ReportReport
Posted on by

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

Categories:
I have the same question (0)
  • Verified answer
    timl Profile Picture
    37,248 Super User 2026 Season 1 on at

    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.

  • v-xida-msft Profile Picture
    Microsoft Employee on at

    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:

    Filter function

     

    Best regards,

Under review

Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.

Helpful resources

Quick Links

Season of Sharing Community Challenge Winners!

Congratulations to our community stars!

Kudos to our 2025 Community Spotlight Honorees

Expanding mentorship, skilling, and AI innovation

Congratulations to the June Top 10 Community Leaders!

These are the community rock stars!

Leaderboard > Power Apps

#1
WarrenBelz Profile Picture

WarrenBelz 337 Most Valuable Professional

#2
11manish Profile Picture

11manish 173

#3
Valantis Profile Picture

Valantis 86

Last 30 days Overall leaderboard