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

Announcements

No record found.

News and Announcements icon
Community site session details

Community site session details

Session Id :
Microsoft Dynamics 365 | Integration, Dataverse...
Suggested Answer

Update excel data in Dataverse table

(0) ShareShare
ReportReport
Posted on by 10
Hi,
 
I am trying to create a flow which will update a column in a Dataverse table with value from Excel. I am unable to do it and hence need help. The column to be updated in the DV table is of Choice type. 
 
Regards
Categories:
I have the same question (0)
  • Suggested answer
    11manish Profile Picture
    504 on at
    You cannot directly update a Dataverse Choice column using text from Excel.
    You must convert the text value into the corresponding numeric option value before updating the record.
     
    You must map Excel text → Dataverse choice value
    Solution options
    Use a mapping inside Flow
    Example:
    Excel Value    Dataverse Value
    Approved    100000001
    Rejected    100000002
    In your flow:
     
    Use a Condition or Switch
     
    Switch(
        items('Apply_to_each')?['Status'],
        "Approved", 100000001,
        "Rejected", 100000002,
        "Pending", 100000000
    )
     
    Then pass this value into Dataverse update action
     
    Use “Get Choices” dynamically 
    You can:
    • Call Dataverse metadata
    • Retrieve option set values
    But:
    • More complex
    • Slower
    Usually not needed unless dynamic
     
    Store numeric values in Excel 
    Instead of text in Excel:
     
    Status
    100000001
    100000002
     
    Then directly update Dataverse

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 Stars!

Meet the Microsoft Dynamics 365 Contact Center Champions

We are thrilled to have these Champions in our Community!

Congratulations to the March Top 10 Community Leaders

These are the community rock stars!

Leaderboard > Microsoft Dynamics 365 | Integration, Dataverse, and general topics

#1
11manish Profile Picture

11manish 152

#2
André Arnaud de Calavon Profile Picture

André Arnaud de Cal... 73 Super User 2026 Season 1

#3
ManoVerse Profile Picture

ManoVerse 55 Super User 2026 Season 1

Last 30 days Overall leaderboard

Product updates

Dynamics 365 release plans