cancel
Showing results for 
Search instead for 
Did you mean: 
Reply
Bjorn
Advocate IV
Advocate IV

Comparing Two Lists and Finding Differences

I'm new to Flow and stuck on what I thought this would be a simple task. I'm storing a list of Salesforce Accounts (names and IDs) in Sharepoint. I'm syncing them when the Salesforce Account object is created/modified, but there's obvioulsy no 'On Delete' trigger. I'm trying to create a Flow that sets an inactive flag on a Sharepoint list item when its corresponding record has been deleted in Salesforce. My attempt is below, but is highly inefficient (a query inside a loop) and chokes when Salesforce returns a 404 on a deleted record.

 

2018-04-05_16-31-33.png

 

I had hoped to get two result sets, A and B, loop through A and use some sort of 'in_array' type function to find the A items not in B. I also tried filter array but couldn't get that to work. Any pointers? 

 

1 ACCEPTED SOLUTION

Accepted Solutions

I finally got it working, posting this for anyone who needs a way to keep lists in sync.

 

I get my two lists, A and B, and select just the IDs into two new arrays (not required, but I needed to cast a Salesforce string to an int for comparison). If the array lengths don't match, we've deleted from List B. I loop through List A, and if that item is not in List B, update List A by setting an IsActive flag to false (didn't want to delete the Sharepoint item for legacy use).

 

This would be considerably easier if Flow had an EXCEPT function! It has UNION and INTERSECTION, not sure why it's missing except: https://docs.microsoft.com/en-us/azure/logic-apps/logic-apps-workflow-definition-language#functions

 

From https://www.essentialsql.com 

UnionInsersectExcept.jpg

 

My Flow:

2018-04-18_17-35-19.png

View solution in original post

26 REPLIES 26
Pieter_Veenstra
Community Champion
Community Champion

Have you tried setting the run after on the condition to on failure?

v-yuazh-msft
Community Support
Community Support

Hi @ Bjorn,

 

The 404 error accurs because you couldn't use the deleted record id to search for record in Salesforce Account,and if you use the deleted record id to search for record in Salesforce Account, the flow would run failed because this record doesn't exists.

 

 

Do you want to sync the account list with the Salesforce Account?

Do you have problem sync the account list with the Salesforce Account which is deleted from Salesforce Account?

 

Microsoft flow Salesforce connector support the trigger "When a record is created" and "When a record is modified", the trigger "When a record is deleted" of Salesforce connector is not supported in Microsoft Flow currently, If you would like this feature to be added in Microsoft Flow, please submit an idea to Flow Ideas Forum:

https://powerusers.microsoft.com/t5/Flow-Ideas/idb-p/FlowIdeas

 

As an alternative way, you could take a try to create the flow as below to delete the items in sharepoint list which is deleted in the Salesforce Account:

 

Capture.PNG

Capture.PNG

 

Please have a try and let me know if it works.

 

Regards,
Alice Zhang

Thanks for the replies. What I'm really looking for is a way to compare two lists to find mismatches. In any other language, I'd loop through one array, and for each item, check if it exists in the second array. Your suggestion loops through a list, and for each item, does a 'Get Records'. Running a seperate query on each item could get expensive when my list has thousands of items. Can't I just query for two lists and then compare them within Flow?

 

This idea is pretty much what I'm trying to do:

https://powerusers.microsoft.com/t5/Building-Flows/Comparing-File-Lists/td-p/64178

 

But I'm not having luck with it. I also tried the idea below, but I'm having trouble with my 'Contains' syntax:

 

2018-04-11_15-03-19.png2018-04-11_15-04-32.png

 

My Salesforce 'Get records' returns the body:

{

  "@odata.context""https://msmanaged-na.azure-apim.net/apim/salesforce/XXXXXXX/$metadata#datasets('default')/tables('Account')/items",
  "value": [
    {
      "@odata.etag""",
      "ItemInternalId""XXXXXX",
      "SharePoint_ID__c""556"
    },
    ...

 

 

In my case, Sharepoint "ID" is equal to the Salesforce "SharePoint_ID__c". But my condition:

@not(contains(body('Get_records'), items('Apply_to_each')?['ID']))

 

isn't correct. Do you know what the correct syntax is for contains? I also tried body('Get_records')?['SharePoint_ID__c'] 

thinking it needed the key, but that's also a type mismatch.

 

 

I finally got it working, posting this for anyone who needs a way to keep lists in sync.

 

I get my two lists, A and B, and select just the IDs into two new arrays (not required, but I needed to cast a Salesforce string to an int for comparison). If the array lengths don't match, we've deleted from List B. I loop through List A, and if that item is not in List B, update List A by setting an IsActive flag to false (didn't want to delete the Sharepoint item for legacy use).

 

This would be considerably easier if Flow had an EXCEPT function! It has UNION and INTERSECTION, not sure why it's missing except: https://docs.microsoft.com/en-us/azure/logic-apps/logic-apps-workflow-definition-language#functions

 

From https://www.essentialsql.com 

UnionInsersectExcept.jpg

 

My Flow:

2018-04-18_17-35-19.png

Hello,

 

Would you kindly give more details about the variables "SharePoint List" and "Salesforce List"? What is the syntax for creating these variables? For instance, I assume you are creating an array variable from the SharePoint list items returned by the "Get Account Master List" but I'd like to see the syntax within the Variable action.

 

Thanks.

 

 

Correct, I'm taking the output from Salesforce and Sharepoint queries and putting just the ID values into two arrays for easy comparison. Not necessary of course, I could have just compared the original JSON output. But when I started that Flow I kept thinking there was something like a SQL 'except' operator available to filter two arrays. There isn't, so I have to loop through the first array to find the IDs not in the second array.

 

2018-06-18_11-08-34.png

Hi @Bjorn,

Can you expand the each step in full so we can see the logic of each step.

This will help myself and others.

Regards,
Alistair

Hi,

Is it possible to compare two SharePoint lists based on a unquie key (only exist once per column in each list) and pull a set of records that don't appear in both list?  I am comparing a master list with another list to find the difference and email customer to complete their survey.  Eventually, both list should have the same number of unique records and I would know all surveys are completed.

Here's the expanded version. This Flow sets an inactive flag on a SharePoint list item when that item no longer exists in Salesforce. On the Salesforce Account object I added a custom field (Sharepoint__ID__c) that stores the corresponding SharePoint item ID. I have another Flow that is triggered onChange of Salesforce Accounts  -- it adds/updates the SharePoint item, and populates the Saleforce custom field with the SharePoint ID if it's blank.

 

  • Every 8 hours query the SharePoint Account list, put the ID's into an array.
  • Get the Salesforce Accounts, put Sharepoint__ID__c into an array.
  • Create an empty array to store any deleted Account IDs.
  • Compare the counts of the Salesforce and SharePoint ID arrays. If they're not the same they're out of sync, loop through the SharePoint ID array and see if that ID is also in the Salesforce ID array. If not, add the missing ID to the deleted Account array.
  • Loop through the deleted Account array and update the SharePoint item by setting the IsActive flag to No.

 

flow1.png

flow2.pngflow3.png

 

  • One final thing to note: on the settings for both the Salesforce and SharePoint queries, I turned on pagination and set the limit to 5000. I have ~1000 Accounts I'm keeping in sync, so we want to make sure we get all the records to compare.

flow4.png

Yeah, that's effectively what I'm doing here. In your parent list add an integer column and store the ID of the child item. Then whenever something changes on the parent list, update the child list accordingly. In our SharePoint I use an Account list in 5 different site collections and store the 5 child IDs in the master list to keep things in sync. I could have used a third-party cross-site lookup app I suppose, but opted to use the Flow parent/child approach instead. If your two lists are in the same site collection maybe you could use a lookup column instead?

Hi @Bjorn,

Thanks for your expanded flow. This helps alot in comparing expressions and seeing how you used flow in each step.

Regards,
Al

@Bjorn.  Thank you for the detailed explanation.  

 @Bjorn I did step by step pretty close to what you have described and my flow complies fine.  After the run it show "False" on "Same Number of Account" step.  I am wondering how to debug it. The log it correct, since number of records in the SharePoint lists don't match it should give a negative response.  

At your convenience please look at the attached picture for my SP lists and advice.

All I am trying to do is compare a master list (SFBForm_Course_2018GF1 - all students with their associated courses) to a child list (SFBForm_Students_1018GF1 - only students that have completed a survey).   The column that matches are Key = Stu_Email_Course_Key.  I want to see a list of students that haven't completed a survey to I can send them a reminder email.

Best

Aaron.

 

I don't see any atatched images.

My apology.Flow_SP_List_101718.jpg

We would need to see your Flow in order to help you.

Here is the images of flow. Tired best to caputure all.MS_Flow_101718 (1).jpgMS_Flow_101718 (2).jpg

A quick look and it seems correct to me, what's failing? Can you screen shot the error?

 

Assuming you're referencing the correct array Output in your ForEachSharepointRecord loop, and that condition is:

@not(contains(body('SelectSurveyList'), items('SelectMasterList')))

@BjornThanks a bunch for helping out!MS_Flow_101718_Error.jpg

I had @not(contains(body('SelectSurveyList'),items('ForEachSharePointRecord'))).  I changed it to @not(contains(body('SelectSurveyList'), items('SelectMasterList'))) and I am getting an error.  Please see the attached image.

Helpful resources

Announcements

Community will be READ ONLY July 16th, 5p PDT -July 22nd

Dear Community Members,   We'd like to let you know of an upcoming change to the community platform: starting July 16th, the platform will transition to a READ ONLY mode until July 22nd.   During this period, members will not be able to Kudo, Comment, or Reply to any posts.   On July 22nd, please be on the lookout for a message sent to the email address registered on your community profile. This email is crucial as it will contain your unique code and link to register for the new platform encompassing all of the communities.   What to Expect in the New Community: A more unified experience where all products, including Power Apps, Power Automate, Copilot Studio, and Power Pages, will be accessible from one community.Community Blogs that you can syndicate and link to for automatic updates. We appreciate your understanding and cooperation during this transition. Stay tuned for the exciting new features and a seamless community experience ahead!

Summer of Solutions | Week 4 Results | Winners will be posted on July 24th

We are excited to announce the Summer of Solutions Challenge!    This challenge is kicking off on Monday, June 17th and will run for (4) weeks.  The challenge is open to all Power Platform (Power Apps, Power Automate, Copilot Studio & Power Pages) community members. We invite you to participate in a quest to provide solutions to as many questions as you can. Answers can be provided in all the communities.    Entry Period: This Challenge will consist of four weekly Entry Periods as follows (each an “Entry Period”)   - 12:00 a.m. PT on June 17, 2024 – 11:59 p.m. PT on June 23, 2024 - 12:00 a.m. PT on June 24, 2024 – 11:59 p.m. PT on June 30, 2024 - 12:00 a.m. PT on July 1, 2024 – 11:59 p.m. PT on July 7, 2024 - 12:00 a.m. PT on July 8, 2024 – 11:59 p.m. PT on July 14, 2024   Entries will be eligible for the Entry Period in which they are received and will not carryover to subsequent weekly entry periods.  You must enter into each weekly Entry Period separately.   How to Enter: We invite you to participate in a quest to provide "Accepted Solutions" to as many questions as you can. Answers can be provided in all the communities. Users must provide a solution which can be an “Accepted Solution” in the Forums in all of the communities and there are no limits to the number of “Accepted Solutions” that a member can provide for entries in this challenge, but each entry must be substantially unique and different.    Winner Selection and Prizes: At the end of each week, we will list the top ten (10) Community users which will consist of: 5 Community Members & 5 Super Users and they will advance to the final drawing. We will post each week in the News & Announcements the top 10 Solution providers.  At the end of the challenge, we will add all of the top 10 weekly names and enter them into a random drawing.  Then we will randomly select ten (10) winners (5 Community Members & 5 Super Users) from among all eligible entrants received across all weekly Entry Periods to receive the prize listed below. If a winner declines, we will draw again at random for the next winner.  A user will only be able to win once overall. If they are drawn multiple times, another user will be drawn at random.  Individuals will be contacted before the announcement with the opportunity to claim or deny the prize.  Once all of the winners have been notified, we will post in the News & Announcements of each community with the list of winners.   Each winner will receive one (1) Pass to the Power Platform Conference in Las Vegas, Sep. 18-20, 2024 ($1800 value). NOTE: Prize is for conference attendance only and any other costs such as airfare, lodging, transportation, and food are the sole responsibility of the winner. Tickets are not transferable to any other party or to next year’s event.   ** PLEASE SEE THE ATTACHED RULES for this CHALLENGE**   Week 1 Results: Congratulations to the Week 1 qualifiers, you are being entered in the random drawing that will take place at the end of the challenge.   Community MembersNumber SolutionsSuper UsersNumber Solutions Deenuji 9 @NathanAlvares24  17 @Anil_g  7 @ManishSolanki  13 @eetuRobo  5 @David_MA  10 @VishnuReddy1997  5 @SpongYe  9JhonatanOB19932 (tie) @Nived_Nambiar  8 @maltie  2 (tie)   @PA-Noob  2 (tie)   @LukeMcG  2 (tie)   @tgut03  2 (tie)       Week 2 Results: Congratulations to the Week 2 qualifiers, you are being entered in the random drawing that will take place at the end of the challenge. Week 2: Community MembersSolutionsSuper UsersSolutionsPower Automate  @Deenuji  12@ManishSolanki 19 @Anil_g  10 @NathanAlvares24  17 @VishnuReddy1997  6 @Expiscornovus  10 @Tjan  5 @Nived_Nambiar  10 @eetuRobo  3 @SudeepGhatakNZ 8     Week 3 Results: Congratulations to the Week 3 qualifiers, you are being entered in the random drawing that will take place at the end of the challenge. Week 3:Community MembersSolutionsSuper UsersSolutionsPower Automate Deenuji32ManishSolanki55VishnuReddy199724NathanAlvares2444Anil_g22SudeepGhatakNZ40eetuRobo18Nived_Nambiar28Tjan8David_MA22   Week 4 Results: Congratulations to the Week 4 qualifiers, you are being entered in the random drawing that will take place at the end of the challenge. Week 4:Community MembersSolutionsSuper UsersSolutionsPower Automate Deenuji11FLMike31Sayan11ManishSolanki16VishnuReddy199710creativeopinion14Akshansh-Sharma3SudeepGhatakNZ7claudiovc2CFernandes5 misc2Nived_Nambiar5 Usernametwice232rzaneti5 eetuRobo2   Anil_g2   SharonS2  

Check Out | 2024 Release Wave 2 Plans for Microsoft Dynamics 365 and Microsoft Power Platform

On July 16, 2024, we published the 2024 release wave 2 plans for Microsoft Dynamics 365 and Microsoft Power Platform. These plans are a compilation of the new capabilities planned to be released between October 2024 to March 2025. This release introduces a wealth of new features designed to enhance customer understanding and improve overall user experience, showcasing our dedication to driving digital transformation for our customers and partners.    The upcoming wave is centered around utilizing advanced AI and Microsoft Copilot technologies to enhance user productivity and streamline operations across diverse business applications. These enhancements include intelligent automation, AI-powered insights, and immersive user experiences that are designed to break down barriers between data, insights, and individuals. Watch a summary of the release highlights.    Discover the latest features that empower organizations to operate more efficiently and adaptively. From AI-driven sales insights and customer service enhancements to predictive analytics in supply chain management and autonomous financial processes, the new capabilities enable businesses to proactively address challenges and capitalize on opportunities.    

Updates to Transitions in the Power Platform Communities

We're embarking on a journey to enhance your experience by transitioning to a new community platform. Our team has been diligently working to create a fresh community site, leveraging the very Dynamics 365 and Power Platform tools our community advocates for.  We started this journey with transitioning Copilot Studio forums and blogs in June. The move marks the beginning of a new chapter, and we're eager for you to be a part of it. The rest of the Power Platform product sites will be moving over this summer.   Stay tuned for more updates as we get closer to the launch. We can't wait to welcome you to our new community space, designed with you in mind. Let's connect, learn, and grow together.   Here's to new beginnings and endless possibilities!   If you have any questions, observations or concerns throughout this process please go to https://aka.ms/PPCommSupport.   To stay up to date on the latest details of this migration and other important Community updates subscribe to our News and Announcements forums: Copilot Studio, Power Apps, Power Automate, Power Pages

Users online (844)