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 Apps / Save dropdown to a Sh...
Power Apps
Suggested Answer

Save dropdown to a SharePoint list using PowerApps

(2) ShareShare
ReportReport
Posted on by 16
I'm trying to save dropdown items to a SharePoint list using PowerApps, but while Business Unit and ReceptionPlace are saved, the other three don't save properly even when I click the save button.

    Set(
        gblClaimRec,
        Patch(
            ClaimMaster,
            Defaults(ClaimMaster),
            {
                'Business Unit': {
                    Value: Dropdown1.Selected.Value
                },
                'ReceptionPlace': {
                    Value: Dropdown2.Selected.Value
                },
                'ComplaintCategory': {
                    Value: Dropdown3.Selected.Value
                },
                'RequestedInvoiceProcess': {
                    Value: Dropdown4.Selected.Value
                },
                'InitialResponse': {
                    Value: Dropdown5.Selected.Value
                },
            }
        )
    );
Apps3.png
Apps1.png
Apps2.png

Your file is currently under scan for potential threats. Please wait while we review it for any viruses or malicious content.

Categories:
I have the same question (0)
  • Vish WR Profile Picture
    3,748 on at
     
    Screenshots are not appearing as it's still scanning. Meanwhile, can you check the data type . The last three fields don’t match the SharePoint column type.
     
    Vishnu WR
     
    Please  Does this answer your question if my post helped you solve your issue. This will help others find it more readily. It also closes the item. If the content was useful in other ways, please consider answering Yes to Was this reply helpful? or give it a Like 

     
  • Suggested answer
    TechFreak Profile Picture
    149 on at

    Hi @TY-16030359-0,

    Your Patch formula looks correct, and since Business Unit and ReceptionPlace are saving properly, the issue is not with the Patch function itself. This behavior usually occurs due to a mismatch between the SharePoint column type and the value being passed from Power Apps.

    What’s likely happening

    The fields that are working are most likely single-choice columns, which accept values in this format:

    { Value: Dropdown.Selected.Value }

    However, the other fields (ComplaintCategory, RequestedInvoiceProcess, InitialResponse) are likely configured differently in SharePoint.

    What to check

    Please verify the column types in your SharePoint list for these fields. Depending on their type, the Patch structure needs to be adjusted.

    Fix based on column type


    • Single Choice column
      { Value: Dropdown.Selected.Value }

    • Single line of text
      Dropdown.Selected.Value

    • Multi-select Choice column
      Dropdown.SelectedItems

    • Lookup column
      {
      Id: Dropdown.Selected.ID,
      Value: Dropdown.Selected.Value
      }

    Helpful Debug Tip

    To confirm what your dropdown is returning, you can temporarily use:

    JSON(Dropdown3.Selected)

    This helps identify whether the correct property is .Value, .Result, or .Title.

    Summary

    Your implementation is correct, but Power Apps requires the data format to match the SharePoint column type exactly. Once the correct structure is applied for each field, all values should save successfully.

     
     

    If this resolves your issue, please consider marking the answer as accepted and giving it a like. It helps others facing similar problems and contributes to the community. Thanks!

  • Suggested answer
    sumit_artesian Profile Picture
    261 on at
     
    Your screenshots are not appearing as of now. But if your first two columns are saving but the other three do not, it implies the issue is not with the syntax of your Power Fx code, but rather your SharePoint list configuration. Dropdown values, more often than not, are of string data type, even if it is a number. It is worth confirming if the columns expect a string value as well. You can do a typecast in such cases.
     
    While you're at it, it is worth confirming the actual name of your columns on your SharePoint list. Sometimes, SharePoint adds URI-encoded values to the column names on its own. To confirm, navigate to the List on SharePoint. Click on settings on the far right of the header banner and go to List Settings. You can click on each column and inspect the URL. It shows the exact name of your column in the URL.
     
    Please  Does this answer your question if my post helped you solve your issue. This will help others find it more readily. It also closes the item.
    If the content was useful in other ways, please consider answering Yes to Was this reply helpful? or give it a Like! 🩷
  • Taro_Y Profile Picture
    16 on at
    Hello @TechFreak

    JSON(Dropdown3.Selected)
    JSON(Dropdown4.Selected)
    JSON(Dropdown5.Selected)
    I tried it. And it displayed like this.
    Apps4.png
    Apps5.png
  • Suggested answer
    MS.Ragavendar Profile Picture
    7,431 Super User 2026 Season 1 on at
     
    The reason only Business Unit and ReceptionPlace are saving correctly is almost always because the other three SharePoint columns are configured differently from the first two, even though they look similar in Power Apps.
     
    ComplaintCategory, RequestedInvoiceProcess, or InitialResponse are either Choice columns with “Allow multiple selections” enabled or are a different column type (for example, Lookup or Yes/No).
     
    When a Choice column allows multiple selections, Dropdown.Selected.Value will not patch correctly, and Power Apps fails silently—no error, but no data saved.
     
    If those columns allow multiple selections, you must use Dropdown.SelectedItems (often with Concat) instead of Selected.Value. Once the column type and selection mode match what you’re patching, the values will save consistently.
     
    If Allow multiple selections = Yes, use SelectedItems
    If Allow multiple selections = No, Selected.Value is correct
     
    This explains why some columns save and others don’t, even though the Save button executes successfully.
     
    ✅If this helped, please Accept as Solution to help others ❤️ A Like is appreciated 🏷️ Tag @MS.Ragavendar for follow-ups.
  • Taro_Y Profile Picture
    16 on at

    Since then, I tried various things, but nothing worked.
    So I deleted the choice field in the SharePoint list and recreated it, and that fixed the issue!

    Choices.png

    Your file is currently under scan for potential threats. Please wait while we review it for any viruses or malicious content.

  • WarrenBelz Profile Picture
    155,838 Most Valuable Professional on at
    Thanks for posting @TechFreak, we appreciate your desire to help the Community
     
    It appears that reply might be an AI-assisted post, but I do not see any tools or sources cited. Can you update the post to include your sources, or confirm this was not produced using AI?
     
    Please refer to the Use AI responsibly section of Writing effective responses in the community Do not
    • Copy and paste AI-generated answers into the forum without verification. While AI is a valuable tool, it is not always correct, and can provide detailed answers that look correct, but are not.
    • Conceal the use of AI. If your answer was written in concert with AI, be forthright about it to ensure that others have an opportunity to review or vet your response for accuracy.
     
     

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

Season of Sharing Community Challenge Launch!

Jump in, show your community spirit, and win prizes!

Kudos to our 2025 Community Spotlight Honorees

Expanding mentorship, skilling, and AI innovation

Congratulations to the May Top 10 Community Leaders!

These are the community rock stars!

Leaderboard > Power Apps

#1
Valantis Profile Picture

Valantis 424

#2
WarrenBelz Profile Picture

WarrenBelz 355 Most Valuable Professional

#3
11manish Profile Picture

11manish 290

Last 30 days Overall leaderboard