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

Notifications

Announcements

Community site session details

Community site session details

Session Id :
Power Platform Community / Forums / Power Apps / Struggling to find the...
Power Apps
Answered

Struggling to find the correct way to filter a combo box using Power Apps SharePoint Integration

(0) ShareShare
ReportReport
Posted on by 2
I have a SharePoint list that has a Power Apps form.
I want to filter a Combo Box that holds one of the lookup columns in the form. The filter is based on the value of another drop down in the form, but this dropdown is completely seperate from the SharePoint list and the data comes from another list entirely.
 
So creating the field in the form from scratch I change the "Items" from this:
Choices([@'Asset and Property Register'].'AssetType')
To this:
Filter('Asset and Property Types', Department.Value = cmbDepartment.Selected.Title)
 
This filters the list perfectly but the problem is when I submit the form, this field doesn't get populated and stays blank. I suspect its because the value it wants isn't exactly the same because of the change ve made to the "Items" but I'm not sure of a solution myself.
 
Thanks.
Categories:
I have the same question (0)
  • Verified answer
    mmbr1606 Profile Picture
    14,605 Super User 2025 Season 2 on at
    hey
     
     
    can u try thi approch:
     
    filter looks fine like:
    Filter('Asset and Property Types', Department.Value = cmbDepartment.Selected.Title)
    
    defaultselecteditem of combobox:
    If(
        !IsBlank(ThisItem.'AssetType'),
        LookUp('Asset and Property Types', ID = ThisItem.'AssetType'.Id)
    )
    
    use this for submitting/patch in the onselect of button:
    Patch(
        'Asset and Property Register',
        Defaults('Asset and Property Register'),
        {
            AssetType: LookUp(
                'Asset and Property Types',
                ID = cmbAssetType.Selected.ID
            )
        }
    )
    
    if it worked please mark as verified solution
     
     
     
    cheers

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

Forum hierarchy changes are complete!

In our never-ending quest to improve we are simplifying the forum hierarchy…

Ajay Kumar Gannamaneni – Community Spotlight

We are honored to recognize Ajay Kumar Gannamaneni as our Community Spotlight for December…

Leaderboard > Power Apps

#1
Kalathiya Profile Picture

Kalathiya 400

#2
WarrenBelz Profile Picture

WarrenBelz 348 Most Valuable Professional

#3
MS.Ragavendar Profile Picture

MS.Ragavendar 315 Super User 2025 Season 2

Last 30 days Overall leaderboard