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

Community site session details

Session Id : K0VqSydD7aFaqAwrdSTQI6
Power Apps - Building Power Apps
Answered

Filtering

Like (0) ShareShare
ReportReport
Posted on 29 Jan 2019 09:02:42 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 30 Jan 2019 at 08:34:10
    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
    35,437 Super User 2025 Season 2 on 29 Jan 2019 at 10:42:25
    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

Telen Wang – Community Spotlight

We are honored to recognize Telen Wang as our August 2025 Community…

Announcing our 2025 Season 2 Super Users!

A new season of Super Users has arrived, and we are so grateful for…

Congratulations to the July Top 10 Community Leaders!

These are the community rock stars!

Leaderboard > Power Apps

#1
WarrenBelz Profile Picture

WarrenBelz 637 Most Valuable Professional

#2
stampcoin Profile Picture

stampcoin 570 Super User 2025 Season 2

#3
Power Apps 1919 Profile Picture

Power Apps 1919 473

Loading complete