cancel
Showing results for 
Search instead for 
Did you mean: 
Reply
Robin-Cr
Frequent Visitor

Parse Json multi nested

Hi!

 

I am having some trouble with converting my HTTP get connector to a working JSON. The ultimate goal is to store the data in a database. 

 

The raw data looks like:

{
    "2023-01-01 00:15+01:00": [
        {
            "unit""kWh",
            "type""E",
            "rate""low",
            "direction""consumption",
            "value"30.0
        },
        {
            "unit""kWh",
            "type""E",
            "rate""normal",
            "direction""consumption",
            "value"0
        }
    ],
    "2023-01-01 00:30+01:00": [
        {
            "unit""kWh",
            "type""E",
            "rate""low",
            "direction""consumption",
            "value"31.0
        },
        {
            "unit""kWh",
            "type""E",
            "rate""normal",
            "direction""consumption",
            "value"0
        }
    ],
    "2023-01-01 00:45+01:00": [
        {
            "unit""kWh",
            "type""E",
            "rate""low",
            "direction""consumption",
            "value"32.0
        },
        {
            "unit""kWh",
            "type""E",
            "rate""normal",
            "direction""consumption",
            "value"0
        }
    ]
}
 
I have tried a few things, however i keep getting errors saying the values return a NULL or not in a valid array. In this case each date has his own values. It has 2 x the same values. One for normal rate and one of Low rates. 
I am really only looking for the one that is filled. So if the low value is filled insert that in a database, if normal is filled fill that one in the database. However i am already having issues with insert all of it in the database. 
 
Does anyone have a solution to parse the above values in a database?
 
Thanks in advance.
1 ACCEPTED SOLUTION

Accepted Solutions
grantjenkins
Super User
Super User

Attempt number 20 😉.

 

See full flow below. I'll go into each of the actions.

grantjenkins_0-1676638890875.png

 

JSON is a Compose that contains your data.

grantjenkins_1-1676638920351.png

 

Select uses the output from JSON and uses the following expressions:

//From
split(replace(string(outputs('JSON')), ']', '['), '[')

//Map
item()

grantjenkins_2-1676638999090.png

 

Filter array uses the output from Select and uses the following expression.

item()

/The actual filter expression is:
@not(startsWith(item(), '}'))

grantjenkins_3-1676639082778.png

 

Initialize variable Items creates an Array variable called items that will eventually contain the items we want.

grantjenkins_4-1676639127215.png

 

Apply to each iterates over the items in our Filter array in chunks of 2 (2 items at a time). The first item is the date and the second item is the actual objects.

chunk(body('Filter_array'), 2)

grantjenkins_5-1676639214059.png

 

Compose uses the following expression to get the objects in JSON format.

json(concat('{"values":[', last(item()), ']}'))

grantjenkins_6-1676639284271.png

 

Filter array Non Zero filters our data so only the items where value is greater than zero are kept.

//From
outputs('Compose')?['values']

//Filter
item()?['value']

//The full filter expression is:
@greater(item()?['value'], 0)

grantjenkins_7-1676639396804.png

 

Append to array variable Items adds the object to the array while also adding the date property. Because the dates are ISO dates, we can safely assume the length will always be the same regardless of date and time.

addProperty(first(body('Filter_array_Non_Zero')), 'date', slice(first(item()), 2, 24))

grantjenkins_8-1676639470582.png

 

That should give you all the objects within the Items array variable. After the Apply to each, I've added another Compose (Output) that just shows the contents of the items array.

grantjenkins_9-1676639577279.png

 

And the final output:

[
  {
    "unit": "kWh",
    "type": "E",
    "rate": "normal",
    "direction": "consumption",
    "value": 30,
    "date": "2023-01-01 00:15+01:00"
  },
  {
    "unit": "kWh",
    "type": "E",
    "rate": "low",
    "direction": "consumption",
    "value": 31,
    "date": "2023-01-01 00:30+01:00"
  },
  {
    "unit": "kWh",
    "type": "E",
    "rate": "low",
    "direction": "consumption",
    "value": 32,
    "date": "2023-01-01 00:45+01:00"
  }
]

grantjenkins_10-1676639628320.png

 


----------------------------------------------------------------------
If I've answered your question, please mark the post as Solved.
If you like my response, please consider giving it a Thumbs Up.

View solution in original post

21 REPLIES 21
grantjenkins
Super User
Super User

What would you be looking to add to your database? Did you want the date and the value, or are you just adding all the values, or all properties within the value that has a value?

 

As an example, which of these are you looking to get out of your JSON data?

[
    30.0,
    31.0,
    32.0
]

 

Or this:

[
    {
        "date": "2023-01-01 00:15+01:00",
        "value": 30.0
    },
    {
        "date": "2023-01-01 00:30+01:00",
        "value": 31.0
    },
    {
        "date": "2023-01-01 00:45+01:00",
        "value": 32.0
    }
]

 

Or this:

[
    {
        "date": "2023-01-01 00:15+01:00",
        "unit": "kWh",
        "type": "E",
        "rate": "low",
        "direction": "consumption",
        "value": 30.0
    },
    {
        "date": "2023-01-01 00:30+01:00",
        "unit": "kWh",
        "type": "E",
        "rate": "low",
        "direction": "consumption",
        "value": 31.0
    },
    {
        "date": "2023-01-01 00:45+01:00",
        "unit": "kWh",
        "type": "E",
        "rate": "low",
        "direction": "consumption",
        "value": 32.0
    }
]

 

Or something else?


----------------------------------------------------------------------
If I've answered your question, please mark the post as Solved.
If you like my response, please consider giving it a Thumbs Up.

Hi thanks for taking time responding.

Looking to add a mix between the 2nd and last, with the exepction that if the value of normal rate is filled i want to add those values. The data always only has a normal or low rate per 15 min. For example:

[
    {
        "date": "2023-01-01 00:15+01:00",
        "rate": "low",
        "value": 30.0
    },
    {
        "date": "2023-01-01 00:30+01:00",
        "rate": "normal",
        "value": 31.0
    },
    {
        "date": "2023-01-01 00:45+01:00",
        "rate": "low",
        "value": 32.0
    }
]

If it is an impossible task to switch between the two rates i would also be happy with:

[
    {
        "date": "2023-01-01 00:15+01:00",
        "rate": "low",
        "value": 30.0
    },
    {
        "date": "2023-01-01 00:15+01:00",
        "rate": "normal",
        "value": 0
    },
    {
        "date": "2023-01-01 00:30+01:00",
        "rate": "low",
        "value": 0
    },
    {
        "date": "2023-01-01 00:30+01:00",
        "rate": "normal",
        "value": 31.0
    },
    {
        "date": "2023-01-01 00:45+01:00",
        "rate": "low",
        "value": 32.0
    },
    {
        "date": "2023-01-01 00:45+01:00",
        "rate": "normal",
        "value": 0
    }
]

 However it would be an added bonus to switch between the two, considering that halves our data. Thanks!

Hopefully this is what you're looking for. It was much more challenging than I first thought. I was planning on taking the data, converting to XML, then running some XPath expressions. However, the data (dates) isn't in a valid format for converting to XML, so had to make some changes to make it valid, then reverse at the end. You'll need to do some testing to ensure it works with your data, but hopefully works as expected.

 

See full flow below. I'll go into each of the actions.

grantjenkins_0-1675933747107.png

 

Initialize variable creates a variable of type string called data. This contains the data that you would get from your HTTP connector.

grantjenkins_1-1675933856346.png

 

Select splits the data on new line character as input and applies some changes to the date property names so it's valid for converting to XML. The expressions used are.

//From
//You would pass in your data from your HTTP connector instead of the variable that I have
split(variables('data'), decodeUriComponent('%0A'))

//Map
//We're replacing + with --- and : with xxx (except for the last :
if(endsWith(item(), ': ['),
    replace(replace(replace(item(), '+', '---'), ':', 'xxx'), 'xxx ', ':'),
    item()
)

grantjenkins_2-1675934019190.png

 

XML is a Compose that converts the data from our Select into XML. The expression used is:

//It joins the array items back to a string, then converts to XML
xml(json(concat('{"root": { value:', json(join(body('Select'), decodeUriComponent('%0A'))), '}}')))

grantjenkins_5-1675934590341.png

 

Select Output uses XPath on the XML output to extract out only the items where the value is greater than zero. See expressions below:

//From
xpath(outputs('XML'), '//root/value/*[value/text() > "0"]')

//Date
//We revert our original changes to the date
replace(replace(replace(replace(xpath(item(), 'name(//*)'), '---', '+'), 'xxx', ':'), '_x0020_', ' '), '_x0032_', '2')

//Rate
xpath(item(), 'string(//rate/text())')

//Value
xpath(item(), 'number(//value/text())')

grantjenkins_3-1675934250652.png

 

The final output after running the flow is below:

[
  {
    "Date": "2023-01-01 00:15+01:00",
    "Rate": "low",
    "Value": 30
  },
  {
    "Date": "2023-01-01 00:30+01:00",
    "Rate": "low",
    "Value": 31
  },
  {
    "Date": "2023-01-01 00:45+01:00",
    "Rate": "low",
    "Value": 32
  }
]

grantjenkins_6-1675934710873.png


----------------------------------------------------------------------
If I've answered your question, please mark the post as Solved.
If you like my response, please consider giving it a Thumbs Up.


----------------------------------------------------------------------
If I've answered your question, please mark the post as Solved.
If you like my response, please consider giving it a Thumbs Up.
Robin-Cr
Frequent Visitor

Thanks! The last bit works great. When i have a static varriable the data is succesfully loaded in a database. However i am having some issues when using the HTTP connector instead.

I recon it has to do with the \`s in the post. But when trying to replace them i get different erorrs. You have any idea how solve this issue?

See attached text document. (couldnt upload txt so i zipped it)

 

Thanks again.

Are you able to wrap your HTTP output into a json expression to see if that fixes it?


----------------------------------------------------------------------
If I've answered your question, please mark the post as Solved.
If you like my response, please consider giving it a Thumbs Up.

That is something i have tried. The first bit of the result i input into the split will then look like:

{"body":{"2023-01-01 00:15+01:00":[{"unit":"kWh","type":"E","rate":"low","direction":"consumption","value":30.0},{"unit":"kWh","type":"E","rate":"normal","direction":"consumption","value":0}],"2023-01-01 00:30+01:00":[{"unit":"kWh","type":"E","rate":"low","direction":"consumption","value":31.0},{"unit":"kWh","type":"E","rate":"normal","direction":"consumption","value":0}],"2023-01-01 00:45+01:00":[{"unit":"kWh","type":"E","rate":"low","direction":"consumption","value":32.0},{"unit":"kWh","type":"E","rate":"normal","direction":"consumption","value":0}],"2023-01-01 01:00+01:00":[{"unit":"kWh","type":"E","rate":"low","direction":"consumption","value":31.0},{"unit":"kWh","type":"E","rate":"normal","direction":"consumption","value":0}],"2023-01-01 01:15+01:00":[{"unit":"kWh","type":"E","rate":"low","direction":"consumption","value":29.0},{"unit":"kWh","type":"E","rate":"normal","direction":"consumption","value":0}],"2023-01-01 01:30+01:00":[{"unit":"kWh","type":"E","rate":"low","direction":"consumption","value":31.0},

 This does look alot like the required conversion. However the split then gives me the following error:

Unable to process template language expressions in action 'Select' inputs at line '0' and column '0': 'The template language function 'split' expects its first parameter to be of type string. The provided value is of type 'Object'. Please see https://aka.ms/logicexpressions#split for usage details.'.

 

Thats why i tried putting into a varriable string. However this then generates the \.

That data looks much better. All you would need to do is wrap the inner part of the split into a string expression, so it converts your JSON object to a string.

 

split(string(YOUR_DATA), decodeUriComponent('%0A'))

 


----------------------------------------------------------------------
If I've answered your question, please mark the post as Solved.
If you like my response, please consider giving it a Thumbs Up.
Robin-Cr
Frequent Visitor

 

It looks like this now:

RobinCr_1-1675950689690.png

The split:

split(string(body('Parse_HTTP')), decodeUriComponent('%0A'))

I get the following error:

RobinCr_2-1675950746983.png

 

 

 

I'm having a bit of trouble splitting this JSON data ☹️. I'm just off to sleep now (midnight for me), but will have another look tomorrow. Might need to go with a different approach.


----------------------------------------------------------------------
If I've answered your question, please mark the post as Solved.
If you like my response, please consider giving it a Thumbs Up.

Are you able to show some of the output from your Select to see if it's split the data correctly. Just a quick screenshot of the Select output would be fine.


----------------------------------------------------------------------
If I've answered your question, please mark the post as Solved.
If you like my response, please consider giving it a Thumbs Up.
Robin-Cr
Frequent Visitor

Output of the Parse:

RobinCr_1-1675951341662.png

Output of the select:

RobinCr_0-1675951308668.png

 

Robin-Cr
Frequent Visitor

@grantjenkins Have you had time to look at this issue? It still is something i am having issues with.

@Robin-Cr I think I’ve got it working now. Had to go with a slightly different approach. Just off to bed now (midnight for me) but will finish it off and post to you when I get up.


----------------------------------------------------------------------
If I've answered your question, please mark the post as Solved.
If you like my response, please consider giving it a Thumbs Up.
grantjenkins
Super User
Super User

Hopefully this will work for you 🙂

 

See full flow below. I'll go into each of the actions.

grantjenkins_0-1676530652432.png

 

JSON is a Compose that contains your data.

grantjenkins_1-1676530695276.png

 

Select Stage 1 uses the following expressions to extract out the data into an array. This is the first stage of transforming the data.

//From
split(replace(string(outputs('JSON')), ']', '['), '[')

//Map
item()

grantjenkins_2-1676530780003.png

 

Filter array uses the output from Select Stage 1 and filters out any items that don't contain the word 'unit'. The expression used here is:

item()

grantjenkins_3-1676530879944.png

 

Select Stage 2 uses the output from Filter array and transforms the items into proper JSON, but into nested arrays which we will sort out in the next actions. The expression used is:

//Map
json(concat('{"values":[', item(), ']}'))

grantjenkins_4-1676530965092.png

 

XML is a Compose that converts the output from Select Stage 2 to XML. The expression used is:

xml(json(concat('{"root": { items:', body('Select_Stage_2'), '}}')))

grantjenkins_5-1676531029402.png

 

Select Final uses the output from XML, using some XPath to extract out only the items where the value is greater than 0.

//From
xpath(outputs('XML'), '//root/items/values[value > 0]')

//Map
json(item())?['values']

grantjenkins_6-1676531111015.png

 

After running the flow now, we should get the following output.

[
  {
    "unit": "kWh",
    "type": "E",
    "rate": "normal",
    "direction": "consumption",
    "value": "30"
  },
  {
    "unit": "kWh",
    "type": "E",
    "rate": "low",
    "direction": "consumption",
    "value": "31"
  },
  {
    "unit": "kWh",
    "type": "E",
    "rate": "low",
    "direction": "consumption",
    "value": "32"
  }
]

grantjenkins_7-1676531174290.png

 

You can then use the output from Select Final to hopefully get what you're after.


----------------------------------------------------------------------
If I've answered your question, please mark the post as Solved.
If you like my response, please consider giving it a Thumbs Up.


----------------------------------------------------------------------
If I've answered your question, please mark the post as Solved.
If you like my response, please consider giving it a Thumbs Up.

Thanks for your response, this indeed seems to work. However i am missing the date field. Any way to get this field in the final stage?

Ahhhhh I completely forgot about the date 😮

 

I'll see what I can do.


----------------------------------------------------------------------
If I've answered your question, please mark the post as Solved.
If you like my response, please consider giving it a Thumbs Up.
grantjenkins
Super User
Super User

Will there always be exactly two items under each date (normal and low)?


----------------------------------------------------------------------
If I've answered your question, please mark the post as Solved.
If you like my response, please consider giving it a Thumbs Up.

Yes there is.

Great - should be able to get the date fairly easily then. Give me 24 hours - just off to sleep then crazy busy day at work tomorrow.


----------------------------------------------------------------------
If I've answered your question, please mark the post as Solved.
If you like my response, please consider giving it a Thumbs Up.

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 (5,168)