Re: Import from Excel to Sharepoint according to a certain ID
Hi mon2,
The answer to "is it possible", when it comes to Power Automate is usually, "probably". 😁
Can you elaborate on what these data sources are? What fields do they have in common? How are you triggering your flow?
At a high level, what you will probably end up doing is:
1) List the rows in your Excel sheet
2) List the items in the SharePoint list
3) Loop through all of the Excel rows
4) Within that loop, loop through all of the SharePoint items
5) For each SharePoint item, use a condition to check to see if they share some field value (unique identifier would be ideal)
6) If yes, populate data from Excel to SharePoint. If no, do nothing.
The downside to a flow like this is that it can take a long time, since it is cross checking every single item manually. So, if you have 500 Excel rows and 500 SharePoint items, the entire flow will end up doing 500 x 500 = 250,000 condition checks. That could take a while.
Tom