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

Data Table to JSON object in PAD

Hi!

 

I have a data table (in Excel) that I need to send via an API call (invoke web action) in Power Automate Desktop.

 

Is there an easy way to convert this table to a JSON object? Or how is this usually handled in similar situations when data needs to get passed via this action?

 

Also, I noticed that in Winautomation there were the features of creating a new custom object and adding a new property to a custom object. Has this action been removed in PAD?

 

Thanks in advance for any input.

32 REPLIES 32

Thanks @Agnius. It works!!

pjwilson1987
Helper I
Helper I

I see how @Agnius created the JSON in his example.

 

But if I have a datable I extracted from Excel like this example:

 

ItemCostStockedShip Date
Wheel$20.5043/1/2016
Door$1523/15/2016
Engine$10013/20/2016
Totals$135.5073/20/2016

 

 

Is it possible to get my JSON string similar to this structured format?

(Basically just the values for each row).

 

pjwilson1987_0-1674629906354.png

 

Agnius
Most Valuable Professional
Most Valuable Professional

What you want there is a list of lists. If you really want to do it this way (not sure why, as it would then be more inconvenient to use this data afterwards), you would need to create a new list variable and add each row to the list before adding the list into the object.

 

The first row is the header row. If you have a table, you can access the headers as a list by using %Table.Columns%. The further rows are simply accessed as %Table[RowIndex]% or via a For Each loop.

 

So, your steps should be as follows:

  1. Create a new list
  2. Add %Table.Columns% to the list
  3. Do a For Each loop on %Table% and add %CurrentRow% to the list
  4. Add the list to the object as %Object['values']% (by using Set Variable).
-------------------------------------------------------------------------------------------------------------------------
If I have answered your question, please mark it as the preferred solution. If you like my response, please give it a Thumbs Up.
Regards, Agnius Bartninkas
Mithlesh
Frequent Visitor

Hi @AgniusBartninka 

 

I have requirement where i am writing the data to Data Table and i wanted to pass it as JSON to power automate cloud from desktop flow. I have tried the your solution to solve the issue but i am encountering error. When i assign to DataTable to custom object variable then it covert the custom variable into Data Table and then this variable is not available for Convert custom object to JSON. Since this happen when the flow is executed it throw error "Argument 'CustomObject must be 'Custom Object'"  . Below the steps i have followed in desktop flow, Can you please help what i am doing wrong here

 

1. Created a Input variable of type Datatable, Variable name: NewInput

Mithlesh_0-1677106145514.png

2. Create a empty custom object variable 

Mithlesh_1-1677106208491.png

3. Assign the NewInput(Datatable) to custom object variable 

Mithlesh_2-1677106422341.png

 

4. Covert the custom object to JSON

Mithlesh_3-1677106505589.png

 

TIA,

Mithlesh

Agnius
Most Valuable Professional
Most Valuable Professional

Hello. What you are doing there is overwriting the custom object with a table. This means that you create a custom object, but then turn it into a data table variable by overwriting it, and it is thus no longer a custom object by the time you try to convert it. Instead, you should assign the data table to a property inside the custom object and not the entire object.

 

In your step #3, instead of setting it to %NewVar%, try setting it to %NewVar['Table']%. This will add a property called 'Table' to your custom object with the data of %NewInput% inside. This way your custom object will remain as custom object that stores a table inside of it.

-------------------------------------------------------------------------------------------------------------------------
If I have answered your question, please mark it as the preferred solution. If you like my response, please give it a Thumbs Up.
Regards, Agnius Bartninkas
Mithlesh
Frequent Visitor

Hi @Agnius ,

 

I have added %NewVar['Table']% to 3rd step but it give me the Error:  Variable 'NewVar' does not have a property 'Table'. I even tried setting to %NewVar['NewInput']% but i am getting the same error.  Can you please advise

 

Mithlesh_0-1677162287565.png

 

Mithlesh_1-1677162316248.png

 

Mithlesh_2-1677162436171.png

 

TIA

Mithlesh

Mithlesh
Frequent Visitor

Hi @Agnius ,

 

I have added %NewVar['Table']% to 3rd step but it give me the Error:  Variable 'NewVar' does not have a property 'Table'. I even tried setting to %NewVar['NewInput']% but i am getting the same error.  Can you please advise

 

Mithlesh_0-1677162287565.png

 

Mithlesh_1-1677162316248.png

 

Mithlesh_2-1677162436171.png

 

TIA

Mithlesh

Agnius
Most Valuable Professional
Most Valuable Professional

You're doing it wrong. You need to use %NewVar['Table']% in the Variable field and not the Value field:

AgniusBartninka_0-1677236483872.png

 

-------------------------------------------------------------------------------------------------------------------------
If I have answered your question, please mark it as the preferred solution. If you like my response, please give it a Thumbs Up.
Regards, Agnius Bartninkas
Mithlesh
Frequent Visitor

Hi @Agnius , Thank you so much to resolve the issue. 

 

-- Below is comment for the readers

When you set a variable to custom object , In the new value type %{{ }}%. I was missing these % and varibale was not set to custom object.

 

Thanks,

Mithlesh

cjaldrich74
Regular Visitor

I'm not sure this is possible, but I have a datatable created from the action Read From Excel. It has 6 columns and 60 rows. I would like to create a new datatable that contains only the rows that match another variable. The purpose would be to use the new datatable in a For Each Loop so that it doesn't waste time iterating through all of the datarows for only a few matches. It ends up making the flow unnecessarily time consuming.

 

So I went through the steps to convert the datatable to JSON. Now, what can I do to filter only the matches? I have tried scripting using Python and JS, but I am getting errors. 

If I manage to figure that step out, would I be able to use Python to return the JSON as a datatable? Maybe I need to just split the Excel table into several smaller ones for each match I am trying to loop through?

 

I am learning as I go, and it would sure be nice to make this happen efficiently in PAD!

Agnius
Most Valuable Professional
Most Valuable Professional

You don't need to convert your table to JSON. You can use Find and replace in data table to find the rows you want, and then build a loop to insert them one by one to your new data table.

 

I would recommend creating a separate topic for this, though.

-------------------------------------------------------------------------------------------------------------------------
If I have answered your question, please mark it as the preferred solution. If you like my response, please give it a Thumbs Up.
Regards, Agnius Bartninkas

I appreciate your response. It sent me in a different direction, and I ended up using SQL to import the data from Excel. It not only allowed me to accomplish exactly what I was trying to do, but it also saved time in the flow by eliminating all of the steps to open Excel, read from and close. It also kept me from having to add more loops.

Thanks for this mate really helpfull but i have a issue one my side. 

 

Here are the steps as you mentionned them. 

StepsSteps

This is the data in my table before converting to JSON. 

Table before converting to JsonTable before converting to Json

And that's the output in my JSON. 

Json DataJson Data

 

Any ideas ? 

 

Thanks y'all 

Helpful resources

Announcements

Calling all User Group Leaders and Super Users! Mark Your Calendars for the next Community Ambassador Call on May 9th!

This month's Community Ambassador call is on May 9th at 9a & 3p PDT. Please keep an eye out in your private messages and Teams channels for your invitation. There are lots of exciting updates coming to the Community, and we have some exclusive opportunities to share with you! As always, we'll also review regular updates for User Groups, Super Users, and share general information about what's going on in the Community.     Be sure to register & we hope to see all of you there!

April 2024 Community Newsletter

We're pleased to share the April Community Newsletter, where we highlight the latest news, product releases, upcoming events, and the amazing work of our outstanding Community members.   If you're new to the Community, please make sure to follow the latest News & Announcements and check out the Community on LinkedIn as well! It's the best way to stay up-to-date with all the news from across Microsoft Power Platform and beyond.    COMMUNITY HIGHLIGHTS   Check out the most active community members of the last month! These hardworking members are posting regularly, answering questions, kudos, and providing top solutions in their communities. We are so thankful for each of you--keep up the great work! If you hope to see your name here next month, follow these awesome community members to see what they do!   Power AppsPower AutomateCopilot StudioPower PagesWarrenBelzDeenujialexander2523ragavanrajanLaurensMManishSolankiMattJimisonLucas001AmikcapuanodanilostephenrobertOliverRodriguestimlAndrewJManikandanSFubarmmbr1606VishnuReddy1997theMacResolutionsVishalJhaveriVictorIvanidzejsrandhawahagrua33ikExpiscornovusFGuerrero1PowerAddictgulshankhuranaANBExpiscornovusprathyooSpongYeNived_Nambiardeeksha15795apangelesGochixgrantjenkinsvasu24Mfon   LATEST NEWS   Business Applications Launch Event - On Demand In case you missed the Business Applications Launch Event, you can now catch up on all the announcements and watch the entire event on-demand inside Charles Lamanna's latest cloud blog.   This is your one stop shop for all the latest Copilot features across Power Platform and #Dynamics365, including first-hand looks at how companies such as Lenovo, Sonepar, Ford Motor Company, Omnicom and more are using these new capabilities in transformative ways. Click the image below to watch today!   Power Platform Community Conference 2024 is here! It's time to look forward to the next installment of the Power Platform Community Conference, which takes place this year on 18-20th September 2024 at the MGM Grand in Las Vegas!   Come and be inspired by Microsoft senior thought leaders and the engineers behind the #PowerPlatform, with Charles Lamanna, Sangya Singh, Ryan Cunningham, Kim Manis, Nirav Shah, Omar Aftab and Leon Welicki already confirmed to speak. You'll also be able to learn from industry experts and Microsoft MVPs who are dedicated to bridging the gap between humanity and technology. These include the likes of Lisa Crosbie, Victor Dantas, Kristine Kolodziejski, David Yack, Daniel Christian, Miguel Félix, and Mats Necker, with many more to be announced over the coming weeks.   Click here to watch our brand-new sizzle reel for #PPCC24 or click the image below to find out more about registration. See you in Vegas!       Power Up Program Announces New Video-Based Learning Hear from Principal Program Manager, Dimpi Gandhi, to discover the latest enhancements to the Microsoft #PowerUpProgram. These include a new accelerated video-based curriculum crafted with the expertise of Microsoft MVPs, Rory Neary and Charlie Phipps-Bennett. If you’d like to hear what’s coming next, click the image below to find out more!   UPCOMING EVENTS Microsoft Build - Seattle and Online - 21-23rd May 2024 Taking place on 21-23rd May 2024 both online and in Seattle, this is the perfect event to learn more about low code development, creating copilots, cloud platforms, and so much more to help you unleash the power of AI.   There's a serious wealth of talent speaking across the three days, including the likes of Satya Nadella, Amanda K. Silver, Scott Guthrie, Sarah Bird, Charles Lamanna, Miti J., Kevin Scott, Asha Sharma, Rajesh Jha, Arun Ulag, Clay Wesener, and many more.   And don't worry if you can't make it to Seattle, the event will be online and totally free to join. Click the image below to register for #MSBuild today!   European Collab Summit - Germany - 14-16th May 2024 The clock is counting down to the amazing European Collaboration Summit, which takes place in Germany May 14-16, 2024. #CollabSummit2024 is designed to provide cutting-edge insights and best practices into Power Platform, Microsoft 365, Teams, Viva, and so much more. There's a whole host of experts speakers across the three-day event, including the likes of Vesa Juvonen, Laurie Pottmeyer, Dan Holme, Mark Kashman, Dona Sarkar, Gavin Barron, Emily Mancini, Martina Grom, Ahmad Najjar, Liz Sundet, Nikki Chapple, Sara Fennah, Seb Matthews, Tobias Martin, Zoe Wilson, Fabian Williams, and many more.   Click the image below to find out more about #ECS2024 and register today!     Microsoft 365 & Power Platform Conference - Seattle - 3-7th June If you're looking to turbo boost your Power Platform skills this year, why not take a look at everything TechCon365 has to offer at the Seattle Convention Center on June 3-7, 2024.   This amazing 3-day conference (with 2 optional days of workshops) offers over 130 sessions across multiple tracks, alongside 25 workshops presented by Power Platform, Microsoft 365, Microsoft Teams, Viva, Azure, Copilot and AI experts. There's a great array of speakers, including the likes of Nirav Shah, Naomi Moneypenny, Jason Himmelstein, Heather Cook, Karuana Gatimu, Mark Kashman, Michelle Gilbert, Taiki Y., Kristi K., Nate Chamberlain, Julie Koesmarno, Daniel Glenn, Sarah Haase, Marc Windle, Amit Vasu, Joanne C Klein, Agnes Molnar, and many more.   Click the image below for more #Techcon365 intel and register today!     For more events, click the image below to visit the Microsoft Community Days website.      

Tuesday Tip | Update Your Community Profile Today!

It's time for another TUESDAY TIPS, your weekly connection with the most insightful tips and tricks that empower both newcomers and veterans in the Power Platform Community! Every Tuesday, we bring you a curated selection of the finest advice, distilled from the resources and tools in the Community. Whether you’re a seasoned member or just getting started, Tuesday Tips are the perfect compass guiding you across the dynamic landscape of the Power Platform Community.   We're excited to announce that updating your community profile has never been easier! Keeping your profile up to date is essential for staying connected and engaged with the community.   Check out the following Support Articles with these topics: Accessing Your Community ProfileRetrieving Your Profile URLUpdating Your Community Profile Time ZoneChanging Your Community Profile Picture (Avatar)Setting Your Date Display Preferences Click on your community link for more information: Power Apps, Power Automate, Power Pages, Copilot Studio   Thank you for being an active part of our community. Your contributions make a difference! Best Regards, The Community Management Team

Hear what's next for the Power Up Program

Hear from Principal Program Manager, Dimpi Gandhi, to discover the latest enhancements to the Microsoft #PowerUpProgram, including a new accelerated video-based curriculum crafted with the expertise of Microsoft MVPs, Rory Neary and Charlie Phipps-Bennett. If you’d like to hear what’s coming next, click the link below to sign up today! https://aka.ms/PowerUp  

Super User of the Month | Ahmed Salih

We're thrilled to announce that Ahmed Salih is our Super User of the Month for April 2024. Ahmed has been one of our most active Super Users this year--in fact, he kicked off the year in our Community with this great video reminder of why being a Super User has been so important to him!   Ahmed is the Senior Power Platform Architect at Saint Jude's Children's Research Hospital in Memphis. He's been a Super User for two seasons and is also a Microsoft MVP! He's celebrating his 3rd year being active in the Community--and he's received more than 500 kudos while authoring nearly 300 solutions. Ahmed's contributions to the Super User in Training program has been invaluable, with his most recent session with SUIT highlighting an incredible amount of best practices and tips that have helped him achieve his success.   Ahmed's infectious enthusiasm and boundless energy are a key reason why so many Community members appreciate how he brings his personality--and expertise--to every interaction. With all the solutions he provides, his willingness to help the Community learn more about Power Platform, and his sheer joy in life, we are pleased to celebrate Ahmed and all his contributions! You can find him in the Community and on LinkedIn. Congratulations, Ahmed--thank you for being a SUPER user!

Tuesday Tip: Getting Started with Private Messages & Macros

Welcome to TUESDAY TIPS, your weekly connection with the most insightful tips and tricks that empower both newcomers and veterans in the Power Platform Community! Every Tuesday, we bring you a curated selection of the finest advice, distilled from the resources and tools in the Community. Whether you’re a seasoned member or just getting started, Tuesday Tips are the perfect compass guiding you across the dynamic landscape of the Power Platform Community.   As our community family expands each week, we revisit our essential tools, tips, and tricks to ensure you’re well-versed in the community’s pulse. Keep an eye on the News & Announcements for your weekly Tuesday Tips—you never know what you may learn!   This Week's Tip: Private Messaging & Macros in Power Apps Community   Do you want to enhance your communication in the Community and streamline your interactions? One of the best ways to do this is to ensure you are using Private Messaging--and the ever-handy macros that are available to you as a Community member!   Our Knowledge Base article about private messaging and macros is the best place to find out more. Check it out today and discover some key tips and tricks when it comes to messages and macros:   Private Messaging: Learn how to enable private messages in your community profile and ensure you’re connected with other community membersMacros Explained: Discover the convenience of macros—prewritten text snippets that save time when posting in forums or sending private messagesCreating Macros: Follow simple steps to create your own macros for efficient communication within the Power Apps CommunityUsage Guide: Understand how to apply macros in posts and private messages, enhancing your interaction with the Community For detailed instructions and more information, visit the full page in your community today:Power Apps: Enabling Private Messaging & How to Use Macros (Power Apps)Power Automate: Enabling Private Messaging & How to Use Macros (Power Automate)  Copilot Studio: Enabling Private Messaging &How to Use Macros (Copilot Studio) Power Pages: Enabling Private Messaging & How to Use Macros (Power Pages)

Users online (6,796)