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 / Removing from Collecti...
Power Apps
Answered

Removing from Collection if exists in another collection

(0) ShareShare
ReportReport
Posted on by 18

Hello,

I have two collections, PlannedVisits and CompletedVisits. What I want to do is remove the visit from the PlannedVisits collection if the visit is in the CompletedVisits collection. Both Collections will have VisitID and LineNumber columns.

 

I've tried using a ForAll on the PlannedVisits collection and then Filter the CompletedVisits collection and tried a RemoveIf with a filter in the condition, with no success.

 

 

I will really appreciate if anyone can let me know how to do this.

 

Thank you 

Categories:
I have the same question (0)
  • Verified answer
    RicHague Profile Picture
    18 on at

    I think I have worked this out. I can use the ClearCollect to a temporary collection with a filter:

     

    ClearCollect(
        colTemp1,
        Filter(
            colPlannedVisits,
            !(VisitID in colCompletedVisits.VisitID And LINENUM in colCompletedVisits.LINENUM)
        )
    );
    ClearCollect(colPlannedVisits,colTemp1);
    Clear(colTemp1);

     

    This copies the visits that are not in the CompledtedVisits collection. So the visits that are in the both are not copied.

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

Introducing the 2026 Season 1 community Super Users

Congratulations to our 2026 Super Users!

Kudos to our 2025 Community Spotlight Honorees

Congratulations to our 2025 community superstars!

Leaderboard > Power Apps

#1
WarrenBelz Profile Picture

WarrenBelz 482 Most Valuable Professional

#2
11manish Profile Picture

11manish 459

#3
Haque Profile Picture

Haque 331

Last 30 days Overall leaderboard