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 Platform Community / Forums / Power Apps / Multiple filter functi...
Power Apps
Answered

Multiple filter function on a SP List

(0) ShareShare
ReportReport
Posted on by Microsoft Employee

Hello Community,

 

I am a beginner on Powerapps. I am currently stucking on the filter function. I am trying to apply two filters on a same list :

The list is a computer's inventory that I want to display the available computers and the loaned computers, but I want to have the choice to display :
- only HP (or any other manufacturer) computers available

- only HP (or any other manufacturer) computers loaned
- onlt the HP & Microsoft (or any other manufacturers) computers available

- onlt the HP & Microsoft (or any other manufacturers) computers loaned
- only the available computers
- only the loaned computers

...

Is anyone could help me please?

Powerapps (2).jpg
Categories:
I have the same question (0)
  • TimRohr Profile Picture
    669 on at

    Hi, @SalemB 

    @RandyHayes  and I just put similar instructions to what you would need on this thread. See if that helps you get started. If we need to back up and start more basic, we can.

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

    Hi @SalemB ,

    Could you please share a bit more about the Available column in your SP list? Is it a Number type column?

    Do you want to filter your Data Table records based on the selected values within your two List Box controls?

    I assume that the Available column is Number type column in your SP list, and Available column = 1, means that the corresponding PC is available, Available column = 0, means that the corresponding PC has been loaded. And the Manufacturer column is a Single line of text type column in your SP list.

     

    I have made a test on my side, please take a try with the following workaround:6.JPG

    Set the Items property of the ListBox1 to following:

     

    ["Microsoft", "HP", "Lenovo", "Dell"]

    Set the Items property of the ListBox2 to following:

    ["Available", "Loaded"]

    Set the Items property of the Data Table control to following:

    Filter(
    '20181019_case9_Courses',
    If(
    !IsEmpty(ListBox1.SelectedItems),
    Manufacturer in ListBox1.SelectedItems.Value,
    true
    )
    )

    On your side, you should type the following formula:

    Filter(
    'YourSPList',
    If(
    !IsEmpty(ListBox1.SelectedItems),
    Manufacturer in ListBox1.SelectedItems.Value,
    true
    ),
    If(
    !IsEmpty(ListBox2.SelectedItems),
    Available in AddColumns(RenameColumns(ListBox2.SelectedItems,"Value","TextValue"),"NumberValue",If(TextValue = "Available", 1, 0)).NumberValue,
    true
    )
    )

     

    Above formula may cause a Delegation warning issue, if you want to get rid of this warning issue, please check the following workaround:

    Set the OnVisible property of the first screen of your app to following:

    ClearCollect(RecordsCollection, 'YourSPList')

    Set the Items property of the Data Table control to following:

    Filter(
    RecordsCollection,
    If(
    !IsEmpty(ListBox1.SelectedItems),
    Manufacturer in ListBox1.SelectedItems.Value,
    true
    ),
    If(
    !IsEmpty(ListBox2.SelectedItems),
    Available in AddColumns(RenameColumns(ListBox2.SelectedItems,"Value","TextValue"),"NumberValue",If(TextValue = "Available", 1, 0)).NumberValue,
    true
    )
    )

     

    Best regards,

     

  • SalemB Profile Picture
    Microsoft Employee on at

    Thank you both for the help you provided 🙂

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 July Top 10 Community Leaders!

These are the community rock stars!

Leaderboard > Power Apps

#1
WarrenBelz Profile Picture

WarrenBelz 358 Most Valuable Professional

#2
11manish Profile Picture

11manish 214 Super User 2026 Season 2

#3
Mohsin Ali Profile Picture

Mohsin Ali 185

Last 30 days Overall leaderboard