Hi Power Automate Community! Riddle me this (because I am SO confused):
I'm building a flow to take SharePoint form responses and export them into a CSV table. First, here is the form:
Expression in Apply to each/Select/Map:
Here are the Select 3 JSON inputs with the relevant response highlighted in red:
{
"@odata.etag": "\"1\"",
"ItemInternalId": "5779",
"ID": 5779,
"Created": "2021-09-08T19:23:05Z",
"CWID": "nhoma",
"First_x0020_and_x0020_Last_x0020": "Nick Homa",
"Where_x0020_are_x0020_you_x0020_": "Chesterfield, MO",
"What_x0020_are_x0020_the_x0020_t": "Learn more about LGBTQ+ legislation. Already active in ARISE and ARISE Ally leadership. ",
"How_x0020_did_x0020_you_x0020_he": [
{
"@odata.type": "#Microsoft.Azure.Connectors.SharePoint.SPListExpandedReference",
"Id": 1,
"Value": "Co-Worker"
}
],
"How_x0020_did_x0020_you_x0020_he@odata.type": "#Collection(Microsoft.Azure.Connectors.SharePoint.SPListExpandedReference)",
"How_x0020_did_x0020_you_x0020_he#Id": [
1
],
"How_x0020_did_x0020_you_x0020_he#Id@odata.type": "#Collection(Int64)",
"BLEND": true,
"BLEND_x0020_Chapters": [
{
"@odata.type": "#Microsoft.Azure.Connectors.SharePoint.SPListExpandedReference",
"Id": 11,
"Value": "St. Louis"
}
],
"BLEND_x0020_Chapters@odata.type": "#Collection(Microsoft.Azure.Connectors.SharePoint.SPListExpandedReference)",
"BLEND_x0020_Chapters#Id": [
11
],
"BLEND_x0020_Chapters#Id@odata.type": "#Collection(Int64)",
"Which_x0020_Business_x0020_Resou": [],
"Which_x0020_Business_x0020_Resou@odata.type": "#Collection(Microsoft.Azure.Connectors.SharePoint.SPListExpandedReference)",
"Which_x0020_Business_x0020_Resou#Id": [],
"Which_x0020_Business_x0020_Resou#Id@odata.type": "#Collection(Int64)",
"What_x0020_are_x0020_the_x0020_t0": [],
"What_x0020_are_x0020_the_x0020_t0@odata.type": "#Collection(Microsoft.Azure.Connectors.SharePoint.SPListExpandedReference)",
"What_x0020_are_x0020_the_x0020_t0#Id": [],
"What_x0020_are_x0020_the_x0020_t0#Id@odata.type": "#Collection(Int64)",
"{Identifier}": "Lists%252fBrg%252f5779_.000",
"{IsFolder}": false,
"{Thumbnail}": {
"Large": null,
"Medium": null,
"Small": null
},
"{Link}": "https://bayergroup.sharepoint.com/sites/Inclusion&DiversityNA/_layouts/15/listform.aspx?PageType=4&ListId=cf09d95c%2D1306%2D4183%2Dbddf%2Dc29c5526134b&ID=5779&ContentTypeID=0x0100157911574944A14D8F8F29051925FC72",
"{Name}": "",
"{FilenameWithExtension}": "(no title)",
"{Path}": "Lists/Brg/",
"{FullPath}": "Lists/Brg/5779_.000",
"{ContentType}": {
"@odata.type": "#Microsoft.Azure.Connectors.SharePoint.SPListExpandedContentType",
"Id": "0x0100157911574944A14D8F8F29051925FC72",
"Name": "Item"
},
"{ContentType}#Id": "0x0100157911574944A14D8F8F29051925FC72",
"{VersionNumber}": "1.0"
},
{
"@odata.etag": "\"2\"",
From this input, it appears that the response (St. Louis) is pulling in as it should be. However, look at the output of the Select 3 step:
What could be going on here? Why is all the data changing to Berkeley Boston in the Select Variables step?
Thank you so much for your help - any questions lmk.