web
You’re offline. This is a read only version of the page.
close
Skip to main content
Community site session details

Community site session details

Session Id :
Power Automate - Building Flows
Answered

Power Apps V2 String to Multi select Sharepoint document set column

(0) ShareShare
ReportReport
Posted on by 14

I hope someone can help me with this situation—it’s driving me crazy!

I have a Document Set in SharePoint, and I’ve built a Power Apps form to create new documents in my library. I use a Power Automate flow (Trigger: PowerApps V2) to send data back to my document set.

Here’s where I’m stuck:

  • Inside my Power Apps form, I have a multi-select dropdown connected to a choice column in SharePoint (multi-select enabled).
  • To pass the selections from Power Apps to Power Automate, I have to Concat the dropdown values into a string.
  • However, I’m having a lot of trouble converting this string input back into the correct multi-select format to update my SharePoint column.

What I’ve Tried So Far:

  1. Splitting the String in Power Automate using the split() function.
  2. Tried using the Select action to map the output with  "Value":@{item()}
  3. Used Apply to Each and Append to Array Variable to reformat the data.

Current Roadblock:
The flow fails to correctly format the data to be accepted by the multi-select choice column. They always come back as strings looking like this for exemple :  {
"Value": [
"C3 - Hexavalent chromium compounds (Y21)",
"C6 - Copper compounds (Y22)",
"C7 - Zinc compounds (Y23)"
]
}

My Question:
How can I properly format a string of multi-select values in Power Automate so it can be sent back to a SharePoint multi-select choice column? I’d greatly appreciate any solutions or workarounds!

I have the same question (0)
  • Verified answer
    Nived_Nambiar Profile Picture
    18,029 Super User 2025 Season 2 on at
    Power Apps V2 String to Multi select Sharepoint document set column
     
     
    I think you should parse the input string coming from power apps trigger using parse JSON and then convert it to the following format which can be passed to drop-down field of update file properties action as shown below
     
    [
      {
        "Value""C3 - Hexavalent chromium compounds (Y21)"
      },
      {
        "Value""C6 - Copper compounds (Y22)"
      },
      {
        "Value""C7 - Zinc compounds (Y23)"
      }
    ]
     
     
    See below flow for reference, 
     
     
    The above action transform the below json structure to json object 
    {
    "Value": [
    "C3 - Hexavalent chromium compounds (Y21)",
    "C6 - Copper compounds (Y22)",
    "C7 - Zinc compounds (Y23)"
    ]
    }
     
     
    Now use the select action to transform to final format which can be passed to dropdown (as shown first)
     
    Now the output of select action can be passed to the multiselect column value in sharepoint actions.
     

    Thanks & Regards,
    Nived N

    Stay connected:
    LinkedIn | YouTube | Blogs

    Was this answer helpful?
    If yes, please mark it as the solution by selecting the checkbox in the discussion thread.
    Your feedback motivates me to keep contributing. Thank you!

  • DS-14111351-0 Profile Picture
    14 on at
    Power Apps V2 String to Multi select Sharepoint document set column
    I've created the Schema as suggested but came back with an error upon testing : 
    Action 'Parse_JSON' failed: The 'content' property of actions of type 'ParseJson' must be valid JSON. The provided value cannot be parsed: 'Unexpected character encountered while parsing value: C. Path '', line 0, position 0.'.
     
     
    {
    "type": "object",
    "properties": {
    "Value": {
    "type": "array",
    "items": {
    "type": "string"
    }
    }
    }
    }
  • Suggested answer
    Nived_Nambiar Profile Picture
    18,029 Super User 2025 Season 2 on at
    Power Apps V2 String to Multi select Sharepoint document set column
     
     
    Can you show how json which you are passing looks like - seems like it is not as per schema 
     
     

    Thanks & Regards,
    Nived N

    Stay connected:
    LinkedIn | YouTube | Blogs

    Was this answer helpful?
    If yes, please mark it as the solution by selecting the checkbox in the discussion thread.
    Your feedback motivates me to keep contributing. Thank you!

  • DS-14111351-0 Profile Picture
    14 on at
    Power Apps V2 String to Multi select Sharepoint document set column
    Screen shoot from my flow
     
    This is from running my test

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

Coming soon: forum hierarchy changes

In our never-ending quest to improve we are simplifying the forum hierarchy…

Chiara Carbone – Community Spotlight

We are honored to recognize Chiara Carbone as our Community Spotlight for November…

Leaderboard > Power Automate

#1
Michael E. Gernaey Profile Picture

Michael E. Gernaey 535 Super User 2025 Season 2

#2
Tomac Profile Picture

Tomac 348 Moderator

#3
developerAJ Profile Picture

developerAJ 262

Last 30 days Overall leaderboard