Skip to main content

Notifications

Community site session details

Community site session details

Session Id :
Power Apps - Building Power Apps
Answered

Filtering

(0) ShareShare
ReportReport
Posted on by 120

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:
  • v-xida-msft Profile Picture
    on at
    Re: Filtering

    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,

  • Verified answer
    timl Profile Picture
    34,933 Super User 2025 Season 1 on at
    Re: Filtering

    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.

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

🌸 Community Spring Festival 2025 Challenge 🌸

WIN Power Platform Community Conference 2025 tickets!

Markus Franz – Community Spotlight

We are honored to recognize Markus Franz as our April 2025 Community…

Kudos to the March Top 10 Community Stars!

Thanks for all your good work in the Community!

Leaderboard

#1
WarrenBelz Profile Picture

WarrenBelz 146,524 Most Valuable Professional

#2
RandyHayes Profile Picture

RandyHayes 76,287 Super User 2024 Season 1

#3
Pstork1 Profile Picture

Pstork1 65,906 Most Valuable Professional

Leaderboard