Notifications
Announcements
I have two Sharepoint Lists, A & B. I have a combo box which needs to list the names from List A which are not in List B. Additionally, it should only include names from List A which have a "Complete" (another field in the list) value of 'No' or 'false'. How can I do this?
@WarrenBelz that did it! It is now sorting correctly. Thanks so much for all your help!
@StaceyGriffeth ,
Not sure how you used it in the code, but it
Sort( Filter( ListA, !(NameField in ListB.NameField) && (Complete = "No" || Complete = "false") ), YourSortField, SortOrder.De/ascendng )
would be
@WarrenBelz thanks so much for your reply! The list is now loading the correct Names. Do you know how I can also sort the list? I've tried SortByColumns but have not been able to get it to work.
Hi @StaceyGriffeth ,
Assuming Complete is a Text field it would be something like this (note this is not Delegable) - with your actual field name
Filter( ListA, !(NameField in ListB.NameField) && (Complete = "No" || Complete = "false") )
Please click Accept as solution if my post helped you solve your issue. This will help others find it more readily. It also closes the item. If the content was useful in other ways, please consider giving it Thumbs Up.
MVP (Business Applications) Visit my blog Practical Power Apps
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.
In our never-ending quest to improve we are simplifying the forum hierarchy…
We are honored to recognize Ajay Kumar Gannamaneni as our Community Spotlight for December…
These are the community rock stars!
Stay up to date on forum activity by subscribing.
Kalathiya 401
WarrenBelz 334 Most Valuable Professional
MS.Ragavendar 325 Super User 2025 Season 2