cancel
Showing results for 
Search instead for 
Did you mean: 
Reply
chickyd
Regular Visitor

Get rows from excel keeps failing

Trying to do the template Click a button to update Dynamics 365 record from matching record in Excel

 

Pulling an excel from One Drive for Business I cannot ket the process to work. (I'm a flow beginner).

 

What am I missing?

 

Thanks!

 

 

1 ACCEPTED SOLUTION

Accepted Solutions

Hi @chickyd 

 

Please see the screenshots below:

 

Here, i am using the filter query to get the records matching to the value in my column 1 from excel. Then i am using that to identify the record and update. (so not worry about the second apply to each as it will update only one record that is matching the unique id field that you created.) in the filter query, replace mycol with the logical name of the field from your entity in dynamics. 

dss.PNG

 

dss2.PNG

Hope this Helps!

 

If this reply has answered your question or solved your issue, please mark this question as answered. Answered questions helps users in the future who may have the same issue or question quickly find a resolution via search. If you liked my response, please consider giving it a thumbs up. THANKS!

View solution in original post

16 REPLIES 16

Hi @chickyd 

 

Can you please post a screenshot of the error and the flow? Having a look at those will help us better understand and address the issue that you are facing. 

 

Sorry I can't seem to bring in a picture.

 

I get NotFound and the following code:

 

{
"status": 404,
  "message": "Failed to read metadata from file source. Response from the end service is : Resource Not Found\r\nclientRequestId: 54940917-14b0-42d2-abbd-5ea2257d48c4",
  "source": "excel-ukw.azconn-ukw-01.p.azurewebsites.net"
}

Hi @chickyd ,

 

What’s your current situation? Does the issue still exist?

 

I have started the flow from the template you’ve mentioned, it just works properly.

1.PNG

 

Please take care of the following points:

  1. The Excel file should be formatted as a Table.
  2. Item identifier of action Get record requires a unique item identifier of the record. In my testing, it is the AccountId. So before running the flow, I have stored the unique account id in the Id field in the Excel file.

Please take another try to see if it works for you now.

 

Best regards,

Mabel

 

Community Support Team _ Mabel Mao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Thanks @v-yamao-msft 

 

I know my issue - it's that I wasn't using the unique identifier.

 

Do I need to add javascript to show the accoutid on my Account form (so I can then copy that into the excel for the lookup) or is there an easier way than this? 

 

If that is the solution it would be great tonknow if you have a best method of JS I should be using.

 

Thanks again!

Hi @chickyd 

 

You can get the record ID (GUID) of any entity by the name of that entity in the flow.  

 

How are you storing the data in your excel sheet? Do you have the record ID value there? 

 

Hope this Helps!

If this reply has answered your question or solved your issue, please mark this question as answered. Answered questions helps users in the future who may have the same issue or question quickly find a resolution via search. If you liked my response, please consider giving it a thumbs up. THANKS!

I have a custom identifier field I created in the Account entity which is a string of text and I created a Key for that field within the Account entity. I then have that identified showing up on my excel.

 

So for example I can type in 12345 into the field in the Acount form for that identifier and then it will lookup record 12345 from the excel.

 

Still failing though:

 

{
"status": 400,
"message": "Invalid value: 12345 provided for item ID",
 
Any thoughts?

Hi @

 

To update a record in Dynamics using Flow, you need to have the identifier. The identifier is a unique string that is auto generated when a record is created and this is a unique string that is used to identify the record. 

 

What you can do is, add an action List records from Dynamics and then fill everything. In the Filter option type: fieldname eq 'excelcolumn' here, field name is the logical name of the field that is the identifier that you created and then in the single quotes, select the column value from excel. The output of this action is in the form of a list but you should get only one value that matches (1234 for example) and then here you wil get the guid in the dynamic selector that you can use in updating the record. 

 

Hope this Helps!

 

If this reply has answered your question or solved your issue, please mark this question as answered. Answered questions helps users in the future who may have the same issue or question quickly find a resolution via search. If you liked my response, please consider giving it a thumbs up. THANKS!

Thanks think I'm getting closer but still struggling tbh.

 

So I've got:

 

Get Rows > List Records > ??

 

Do I go straight from List Records to Update a record - which is what i've tried and it's failed. Is Record identified in Update a record equal to my 'fieldname' from the Accounts entity?

 

Apologies, feel nearly there but adding this extra step has thrown the template i was using out so could do with help getting it over the line.

Hi @chickyd 

 

Please see the screenshots below:

 

Here, i am using the filter query to get the records matching to the value in my column 1 from excel. Then i am using that to identify the record and update. (so not worry about the second apply to each as it will update only one record that is matching the unique id field that you created.) in the filter query, replace mycol with the logical name of the field from your entity in dynamics. 

dss.PNG

 

dss2.PNG

Hope this Helps!

 

If this reply has answered your question or solved your issue, please mark this question as answered. Answered questions helps users in the future who may have the same issue or question quickly find a resolution via search. If you liked my response, please consider giving it a thumbs up. THANKS!

Thanks this is brilliant. I have it working!

 

Quick follow up. I can seem to only bring in values from the excel into text string fields - so can't bring in currency or whole number fields. Is there a way of doing this?

 

Thanks again!

Hi @chickyd 

 

You might not be getting those directly due to formatting issues at the excel and matching those to dynamics. 

 

However, integer and currency field should be able to accommodate integer values. Need to check this though. 

 

Can you try this: 

 

You can access the element column of the excel when using the apply to each loop using the expression: 

items('Apply_to_each')?['Column1']

Here, column1 is the name of my excel column. 

 

Now wrap this in an int

int(items('Apply_to_each')?['Column1'])

If the currency is in float, (has decimals), use float() instead of int. 

 

Please crosscheck the name of the apply to each action. If it is apply to each 2 for the excel list then the expression will have '_2' after the 'each' string and so on based on the name of the control. 

 

Hope this Helps!

 

If this reply has answered your question or solved your issue, please mark this question as answered. Answered questions helps users in the future who may have the same issue or question quickly find a resolution via search. If you liked my response, please consider giving it a thumbs up. THANKS!

Hey sorry you've managed to go beyond my understanding there!

 

Is there any simple way I can just get the format in the excel to match the format of a field in Dynamics? I can create new fields for this purpose and change the format in the excel. Just looking for numbers with comas and ideally currency.

Hi @chickyd 

 

So the dynamics connector sometimes fails to recognise other datatypes. What you could try is, initialise a variable in the beginning of the flow just after the trigger. give a name and select the type as integer, leave the value empty. Now in the apply to each of the excel rows, add an action set variable and here select the variable name you initialised and in the value you should be able to select the excel wholenumber column from the dynamic selector. 

 

In teh update record action, for the whole number, use the variable from the dynamic selector. 

 

You will have to add those many variables as you have in the excel for the number/ currency types. 

 

Hope this Helps!

If this reply has answered your question or solved your issue, please mark this question as answered. Answered questions helps users in the future who may have the same issue or question quickly find a resolution via search. If you liked my response, please consider giving it a thumbs up. THANKS!

All good, thanks for your help.

 

I have KuTools installed on excel and i discovered a way of converting all cell contents to text strings with one click which has satisfied me for now. 

 

Thanks agian for all your help!

After all that perhaps it would be better to capture the real value so I can filter correctly within dynamics. 

 

On your suggestion here I don't have the option to select the excel whole number column from the dynamic selector when I'm doing the Set Variable action. Any thoughts?

Hi @chickyd 

 

Can you share a screenshot of the flow and show what all options are available there? What type of variable did you initialise? Can you try initialising a string and check if that option appears in the dynamic selector? If so, we will have to use a simple int() expression to get the value. 

Helpful resources

Announcements

Power Platform Connections - Episode 7 | March 30, 2023

Episode Seven of Power Platform Connections sees David Warner and Hugo Bernier talk to Dian Taylor, alongside the latest news, product reviews, and community blogs.     Use the hashtag #PowerPlatformConnects on social media for a chance to have your work featured on the show.  

Announcing | Super Users - 2023 Season 1

Super Users – 2023 Season 1    We are excited to kick off the Power Users Super User Program for 2023 - Season 1.  The Power Platform Super Users have done an amazing job in keeping the Power Platform communities helpful, accurate and responsive. We would like to send these amazing folks a big THANK YOU for their efforts.      Super User Season 1 | Contributions July 1, 2022 – December 31, 2022  Super User Season 2 | Contributions January 1, 2023 – June 30, 2023    Curious what a Super User is? Super Users are especially active community members who are eager to help others with their community questions. There are 2 Super User seasons in a year, and we monitor the community for new potential Super Users at the end of each season. Super Users are recognized in the community with both a rank name and icon next to their username, and a seasonal badge on their profile.  Power Apps  Power Automate  Power Virtual Agents  Power Pages  Pstork1*  Pstork1*  Pstork1*  OliverRodrigues  BCBuizer  Expiscornovus*  Expiscornovus*  ragavanrajan  AhmedSalih  grantjenkins  renatoromao    Mira_Ghaly*  Mira_Ghaly*      Sundeep_Malik*  Sundeep_Malik*      SudeepGhatakNZ*  SudeepGhatakNZ*      StretchFredrik*  StretchFredrik*      365-Assist*  365-Assist*      cha_cha  ekarim2020      timl  Hardesh15      iAm_ManCat  annajhaveri      SebS  Rhiassuring      LaurensM  abm      TheRobRush  Ankesh_49      WiZey  lbendlin      Nogueira1306  Kaif_Siddique      victorcp  RobElliott      dpoggemann  srduval      SBax  CFernandes      Roverandom  schwibach      Akser  CraigStewart      PowerRanger  MichaelAnnis      subsguts  David_MA      EricRegnier  edgonzales      zmansuri  GeorgiosG      ChrisPiasecki  ryule      AmDev  fchopo      phipps0218  tom_riha      theapurva  takolota     Akash17  momlo     BCLS776  Shuvam-rpa     rampprakash  ScottShearer     Rusk  ChristianAbata     cchannon  Koen5     a33ik  Heartholme     AaronKnox  okeks      Matren   David_MA     Alex_10        Jeff_Thorpe        poweractivate        Ramole        DianaBirkelbach        DavidZoon        AJ_Z        PriyankaGeethik        BrianS        StalinPonnusamy        HamidBee        CNT        Anonymous_Hippo        Anchov        KeithAtherton        alaabitar        Tolu_Victor        KRider        sperry1625        IPC_ahaas      zuurg    rubin_boer   cwebb365   Dorrinda   G1124   Gabibalaban   Manan-Malhotra   jcfDaniel   WarrenBelz   Waegemma   drrickryp   GuidoPreite    If an * is at the end of a user's name this means they are a Multi Super User, in more than one community. Please note this is not the final list, as we are pending a few acceptances.  Once they are received the list will be updated. 

Register now for the Business Applications Launch Event | Tuesday, April 4, 2023

Join us for an in-depth look into the latest updates across Microsoft Dynamics 365 and Microsoft Power Platform that are helping businesses overcome their biggest challenges today.   Find out about new features, capabilities, and best practices for connecting data to deliver exceptional customer experiences, collaborating, and creating using AI-powered capabilities, driving productivity with automation—and building towards future growth with today’s leading technology.   Microsoft leaders and experts will guide you through the full 2023 release wave 1 and how these advancements will help you: Expand visibility, reduce time, and enhance creativity in your departments and teams with unified, AI-powered capabilities.Empower your employees to focus on revenue-generating tasks while automating repetitive tasks.Connect people, data, and processes across your organization with modern collaboration tools.Innovate without limits using the latest in low-code development, including new GPT-powered capabilities.    Click Here to Register Today!    

Check out the new Power Platform Communities Front Door Experience!

We are excited to share the ‘Power Platform Communities Front Door’ experience with you!   Front Door brings together content from all the Power Platform communities into a single place for our community members, customers and low-code, no-code enthusiasts to learn, share and engage with peers, advocates, community program managers and our product team members. There are a host of features and new capabilities now available on Power Platform Communities Front Door to make content more discoverable for all power product community users which includes ForumsUser GroupsEventsCommunity highlightsCommunity by numbersLinks to all communities Users can see top discussions from across all the Power Platform communities and easily navigate to the latest or trending posts for further interaction. Additionally, they can filter to individual products as well.   Users can filter and browse the user group events from all power platform products with feature parity to existing community user group experience and added filtering capabilities.     Users can now explore user groups on the Power Platform Front Door landing page with capability to view all products in Power Platform.      Explore Power Platform Communities Front Door today. Visit Power Platform Community Front door to easily navigate to the different product communities, view a roll up of user groups, events and forums.

Microsoft Power Platform Conference | Registration Open | Oct. 3-5 2023

We are so excited to see you for the Microsoft Power Platform Conference in Las Vegas October 3-5 2023! But first, let's take a look back at some fun moments and the best community in tech from MPPC 2022 in Orlando, Florida.   Featuring guest speakers such as Charles Lamanna, Heather Cook, Julie Strauss, Nirav Shah, Ryan Cunningham, Sangya Singh, Stephen Siciliano, Hugo Bernier and many more.   Register today: https://www.powerplatformconf.com/   

Users online (4,305)