Hello,
I am trying to copy data from an Excel table into a SharePoint list that has existing data. I am trying to use the intersection expression to see what is the same and what is not the same so to delete or update items. However my intersection seems to return nothing. It should be noted that both of the select steps I have mapped to be identical keys.
Here is my intersection expression:
intersection(body('Select_ExcelKeys'),body('Select_SharePointKeys'))
Hi,
Could you please share details about "Select Excel Keys" and "SharePoint Keys"? What kind of object do they have?
Sure no problem,
Using Parse JSON this is the Schema from the Excel select:
{
"type": "object",
"properties": {
"body": {
"type": "array",
"items": {
"type": "object",
"properties": {
"City": {
"type": "string"
},
"State": {
"type": "string"
},
"Location Name": {
"type": "string"
},
"Verizon IP Address": {
"type": "string"
},
"FWS IP Address": {
"type": "string"
},
"DNS Entity Name": {
"type": "string"
},
"Entity Hostname": {
"type": "string"
},
"Local Contact Name": {
"type": "string"
},
"Local Contact Email": {
"type": "string"
},
"Local Contact Cell Phone": {
"type": "string"
},
"Local Contact Office Phone": {
"type": "string"
},
"Location Streeet": {
"type": "string"
},
"Location Zip Code": {
"type": "string"
},
"Data Access Type": {
"type": "string"
},
"Circuit Speed": {
"type": "string"
}
},
"required": [
"City",
"State",
"Location Name",
"Verizon IP Address",
"FWS IP Address",
"DNS Entity Name",
"Entity Hostname",
"Local Contact Name",
"Local Contact Email",
"Local Contact Cell Phone",
"Local Contact Office Phone",
"Location Streeet",
"Location Zip Code",
"Data Access Type",
"Circuit Speed"
]
}
}
}
}
Using Parse JSON this is the Schema from the SharePoint select:
{
"type": "object",
"properties": {
"body": {
"type": "array",
"items": {
"type": "object",
"properties": {
"City": {
"type": "string"
},
"State": {
"type": "string"
},
"Location Name": {
"type": "string"
},
"Verizon IP Address": {
"type": "string"
},
"FWS IP Address": {},
"DNS Entity Name": {
"type": "string"
},
"Entity Hostname": {
"type": "string"
},
"Local Contact Name": {
"type": "string"
},
"Local Contact Email": {
"type": "string"
},
"Local Contact Cell Phone": {},
"Local Contact Office Phone": {},
"Location Streeet": {
"type": "string"
},
"Location Zip Code": {},
"Data Access Type": {
"type": "string"
},
"Circuit Speed": {}
},
"required": [
"City",
"State",
"Location Name",
"Verizon IP Address",
"FWS IP Address",
"DNS Entity Name",
"Entity Hostname",
"Local Contact Name",
"Local Contact Email",
"Local Contact Cell Phone",
"Local Contact Office Phone",
"Location Streeet",
"Location Zip Code",
"Data Access Type",
"Circuit Speed"
]
}
}
}
}
The first Microsoft-sponsored Power Platform Conference is coming in September. 100+ speakers, 150+ sessions, and what's new and next for Power Platform.
Announcing a new way to share your feedback with the Power Automate Team.
Power Platform release plan for the 2022 release wave 2 describes all new features releasing from October 2022 through March 2023.
Learn to digitize and optimize business processes and connect all your applications to share data in real time.
User | Count |
---|---|
63 | |
27 | |
22 | |
15 | |
15 |
User | Count |
---|---|
123 | |
47 | |
43 | |
35 | |
31 |