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

Announcements

News and Announcements icon
Community site session details

Community site session details

Session Id :
Power Platform Community / Forums / Power Automate / Update Multi Choice co...
Power Automate
Suggested Answer

Update Multi Choice column values from form

(0) ShareShare
ReportReport
Posted on by
I have a SharePoint list with the fields EmpName, Manager, and AppsRequired. The AppsRequired column is a choice column that may take several values. Essentially, it includes a list of application names.
When a new item is created with EmpName, Manager, send an email to the manager asking the application for the new employee. Once the manager has chosen an application, the data should be saved back to the list.
Can we accomplish this by distributing a simple form or through an approval email flow?
Categories:
I have the same question (0)
  • Suggested answer
    David_MA Profile Picture
    13,912 Super User 2026 Season 1 on at
    You could create an adaptive card and send it to the manager through a Teams message. This would allow for the option to choose multiple items. Although, it would be much easier to just send the link to the item and ask the manager to choose the options. You can have the flow trigger when the item is updated, and use the check for changes action to see if the field has been modified.
     
    If you go the adaptive card route, this is an example of the code for an adaptive card:
     
    {
        "type": "AdaptiveCard",
        "body": [
            {
                "type": "TextBlock",
                "text": "What apps are required?",
                "weight": "Bolder",
                "size": "Medium"
            },
            {
                "type": "Input.ChoiceSet",
                "id": "requiredApps",
                "style": "expanded",
                "isMultiSelect": true,
                "choices": [
                    {
                        "title": "Acrobat",
                        "value": "acrobat"
                    },
                    {
                        "title": "Word",
                        "value": "word"
                    },
                    {
                        "title": "Excel",
                        "value": "excel"
                    },
                    {
                        "title": "PowerPoint",
                        "value": "powerpoint"
                    },
                    {
                        "title": "OneNote",
                        "value": "onenote"
                    }
                ]
            }
        ],
        "actions": [
            {
                "type": "Action.Submit",
                "title": "Submit"
            }
        ],
        "$schema": "http://adaptivecards.io/schemas/adaptive-card.json",
        "version": "1.3"
    }
     
    It produces this:
     
    Here is a demo on the basics of using an adaptive card: https://youtu.be/LAOVAr5GP84?si=P0AdmVuzmlFtOI5r

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

Introducing the 2026 Season 1 community Super Users

Congratulations to our 2026 Super Users!

Kudos to our 2025 Community Spotlight Honorees

Congratulations to our 2025 community superstars!

Leaderboard > Power Automate

#1
David_MA Profile Picture

David_MA 251 Super User 2026 Season 1

#2
Haque Profile Picture

Haque 239

#3
Expiscornovus Profile Picture

Expiscornovus 220 Most Valuable Professional

Last 30 days Overall leaderboard