cancel
Showing results for 
Search instead for 
Did you mean: 
Reply
MelissaReed
Helper V
Helper V

Is there a way to concatenate arrays (not Union() -- I don't want to drop any rows; not For Each/Append To Array -- it's a performance killer)

 

I am pulling billing data off of a form that displays as two columns.  The reader pulls these two columns as a table of detail lines -- GenericCharges1A and GenericCharges1B.      

MelissaReed_0-1653056538016.png

I need these values (there are 6 of these tables/arrays) consolidated to a single array for processing.

 

union() doesn't work because it drops duplicate rows.

Is there a unionall() that doesn't drop any rows?

 

I've tried concatenate() but it does literally just that -- it bolts the contents of the arrays together to form a long string and I can't use it aw an array.  I've tried wrapping that in createArray(), but it creates a two-item array with each item itself being an array.  

 

Has anyone found a way to do this?   Would pasting these values to an Excel table (virtual, not one that is saved anywhere) be an option?  

 

I could always do a For Each / AppendToArray() loop on each of the GenericCharges* arrays but that is a performance killer.

 

I'm looking for options that are NOT Union() or For Each.

 

2 ACCEPTED SOLUTIONS

Accepted Solutions
ekarim2020
Super User
Super User

Hi @MelissaReed ,

 

Here is one option to combine multiple arrays into a single array without using an Apply to Each loop. The demo flow uses three arrays.

 

The flow works by converting each array into a string so that we can use Power Automate's string manipulation functions. We remove the enclosing characters of the array (i.e. [ and ] characters are removed ) using the slice function. The sliced strings of each array are then concatenated together, and the concatenated string is then converted to back in to an array.

 

(1) The demo flow uses three arrays. The red areas show what the slice funcion will extract from each array later in the flow. Note that the enclosing characters of the array (i.e. [ and ] characters) are removed.

Snag_55ba451.png

Snag_55bdb21.png

Snag_55c1d79.png

(2) We can remove the enclosing characters of the array (i.e. [ and ] characters) using the slice function.

Snag_55c657f.png

These are the expressions used in the compose actions above:

slice(string(variables('varArray1')), 1, -1)

slice(string(variables('varArray2')), 1, -1)

slice(string(variables('varArray3')), 1, -1)

See: Reference guide for expression functions - Azure Logic Apps | Microsoft Docs | Slice Function to see how the slice function works.

 

(3) The sliced strings from each of the three arrays are then concatenated together:

Snag_55e4be2.png

This is the expression used for the concat function:

concat('['outputs('Compose_Array1')',', outputs('Compose_Array2')',' , outputs('Compose_Array3')']')

 

In the concat action we add back the enclosing characters of the array (i.e. [ and ] characters) which we removed earlier. The output of the concat function is a string, even though it looks like an array.

 

(4) Finally we need to convert the string from the concat function into an array using the json function . The json function will return an array of objects for the concatenated string:

Snag_5693b62.png

This is the expression used for the initialize array variable function:

json(outputs('Compose_Concat'))

 

And here is the sample runtime output showing the combined array:

Snag_56c5bad.png

Hope this helps.

 


Ellis
____________________________________
If I have answered your question, please mark the post as Solved.
If you like my response, please give it a Thumbs Up.

View solution in original post

MelissaReed
Helper V
Helper V

I just came across an excellent and "in one step" way to concatenate arrays   (append without dropping duplicates): 

 https://recursion.no/blogs/power-automate-extract-combine-join-and-filter-array-values/    

 

"convert the array to string object, and then concatenate them and replace the brackets in between. Then you need to convert it back to an array object afterwards."

 

json(replace(concat(

                                   string(outputs('arrArray1'))

                                   ,string(outputs('arrArray2'))

                                  ,  << and so forth for each array >>        

                      ),   '"]["',    '","')  )

 

Note carefully the replace() values are 

             singlequote, doublequote, end bracket, startbracket, doublequote, singlequote  

and 

            singlequote, doublequote, comma, doublequote, singlequote.

It's kinda hard to see when they're rammed up together 

 

Also I put commas at the start of the line for each array I'm appending.  The array expressions do need to be separated by  commas! 

 

This is much easier (and reproducible ) than the other solutions I've seen so I am going to mark this as Solution so more people can find it.

View solution in original post

11 REPLIES 11
ekarim2020
Super User
Super User

Hi @MelissaReed ,

 

Here is one option to combine multiple arrays into a single array without using an Apply to Each loop. The demo flow uses three arrays.

 

The flow works by converting each array into a string so that we can use Power Automate's string manipulation functions. We remove the enclosing characters of the array (i.e. [ and ] characters are removed ) using the slice function. The sliced strings of each array are then concatenated together, and the concatenated string is then converted to back in to an array.

 

(1) The demo flow uses three arrays. The red areas show what the slice funcion will extract from each array later in the flow. Note that the enclosing characters of the array (i.e. [ and ] characters) are removed.

Snag_55ba451.png

Snag_55bdb21.png

Snag_55c1d79.png

(2) We can remove the enclosing characters of the array (i.e. [ and ] characters) using the slice function.

Snag_55c657f.png

These are the expressions used in the compose actions above:

slice(string(variables('varArray1')), 1, -1)

slice(string(variables('varArray2')), 1, -1)

slice(string(variables('varArray3')), 1, -1)

See: Reference guide for expression functions - Azure Logic Apps | Microsoft Docs | Slice Function to see how the slice function works.

 

(3) The sliced strings from each of the three arrays are then concatenated together:

Snag_55e4be2.png

This is the expression used for the concat function:

concat('['outputs('Compose_Array1')',', outputs('Compose_Array2')',' , outputs('Compose_Array3')']')

 

In the concat action we add back the enclosing characters of the array (i.e. [ and ] characters) which we removed earlier. The output of the concat function is a string, even though it looks like an array.

 

(4) Finally we need to convert the string from the concat function into an array using the json function . The json function will return an array of objects for the concatenated string:

Snag_5693b62.png

This is the expression used for the initialize array variable function:

json(outputs('Compose_Concat'))

 

And here is the sample runtime output showing the combined array:

Snag_56c5bad.png

Hope this helps.

 


Ellis
____________________________________
If I have answered your question, please mark the post as Solved.
If you like my response, please give it a Thumbs Up.

eliotcole
Super User
Super User

Here's a one shot that uses the slice() function that @ekarim2020 showed you, @MelissaReed.

 

If you put this into a compose (or array Variable, or anywhere!) it is similar to Ellis' version, but just passed through a couple of translation layers instead:

 

json(
    xml(
        json(
            concat(
                '{"root": { "items": ', 
                slice(string(outputs('arrayOneCNST')), 0, -1), 
                ',',
                slice(string(outputs('arrayTwoCNST')), 1, -1), 
                ',',
                slice(string(outputs('arrayThreeCNST')), 1, -1), 
                ',',
                slice(string(outputs('arrayFourCNST')), 1, -1), 
                ',',
                slice(string(outputs('arrayFiveCNST')), 1, -1), 
                ',',
                slice(string(outputs('arraySixCNST')), 1), 
                '}}'
            )
        )
    )
)?['root']?['items']

 

I've just got the example arrays in 6 compose actions, rather than arrays, but it works the same way.

 

Working

 

Spoiler

 Here's each step from the inside out:

  1. slice() - You have seen how these work in Ellis' example, here the first and last are just keeping that array delimiter.
  2. concat() - This is placing each of those slice() functions inside some extra text which builds the JSON object, and ensuring that there are commas after the end of each of the last items in the inputted arrays.
  3. json() - This converts whatever string is inside it into JSON proper.
  4. xml() - This converts anything inside it into XML. XML works as arrays.
  5. json() - This converts that back into JSON, and it is taking the value from the 'items' field which is itself inside the root item.

---

 

That being said ... I've put a bit of thought into the whether or not:

  1. There's always going to be 6 arrays.
  2. How that information is coming in.

 

So if you could show screenshots of your current flow in the original question, that would really help. Just obfuscate anything private like you have in the image of the information that is used to create the arrays.

 

I believe that there's at least two possible ways to do it in a couple of steps without knowing what the arrays are, but each one might be different depending on how it comes in. Ideally it would also be great to see how that information is presented in a (failed?) flow run, too.

 

My current thoughts which you can ignore, but could help if you want to go a bit deeper here:

Spoiler

I'm guessing that the arrays are coming in one of two ways:

  1. You're sending out actions to retrieve the information, which literally creates 6 separate arrays.
  2. You're receiving data from somewhere that has translated that form, which presents it as 6 arrays within the JSON data that it presents.

So if this is #1, then you could write your own 'megaArray', with each item being details on the 6 arrays AND the items from each array as an internal array field in that item. Then after that, use a Select action on a range() of the length of your 'megaArray', to selectively take an item from each of the 6 arrays, and place it as the current item in the new, select, array. Enabling you to place the correct details from each item in the original array inside this new one.

Alternatively, if it comes all in one package, as [[ARRAY_ONE],[ARRAY_TWO],[ARRAY_THREE],[ARRAY_FOUR],[ARRAY_FIVE],[ARRAY_SIX]], then you could do the same, but instead of making your own array, you use a select action to make it, which is even easier. This would be awesome if true, as your logic would be even easier.

I am putting together demos of both ways, because I want it for my own notes, but either option is more complex  than the above, or Ellis' example ... it's just that they're potentially data agnostic ... which is the ideal, here. Plus, two steps. That's why it'd be great to see how the information is coming in, or some kind of example.

Sorry, I forgot to mention the union function if your source data is in the correct array format:

 

union(variables('varArray1'),variables('varArray2'), variables('varArray3'))

 

 

Snag_7ded51e.png

 

When you recieve data from sources that returns only text (string)  or partial data, then string manipulation functions are very useful to structure your JSON and array objects.

 

Ellis

 

@ekarim2020 

This provided a missing puzzle piece -- slice().   Plus I do not have a good grip on when an array is really a string and vice versa...  This is enormously helpful just as a study in itself.

 

I will definitely give this a try.   The data I'm working with is coming in from a Forms AI output, where the form model is reading in charge detail that comes in two columns per page.  A short bill could just be a single column of data, a longer bill could be two columns on one page.   The Multi-page table (Preview) option won't work for me in this case because I have to read down, accross, then next page down, across.  Six tables:   1A, 1B then 2A, 2B, then 3A, 3B.  

 

So far none of our invoices details have needed tables 3A or 3B but I'm including them to allow for future growth.   

Your solution helps me skip a step -- the data comes from the "Read Forms Input"  as a part of the Ouptut() string  

The individual tables are referenced as GenericDetail1A entries, GenericDetail1B entries, and so forth.  But not every invoice will have all 6 tables.  I've accounted for that using Coalesce()

 

So with your approach I can take that text directly into your Slice() functions, no convert-to-string needed!

I tried the concat() approach but the data was already in array format from  Select actions. 

 

The secret was concatenate STRINGS not arrays, and a String in proper format can be converted en masse to an array variable -- no looping needed.  

 

This bit of knowledge is going to be applicable in so many places!

 

I want to make sure this will work in my particular case before clicking Accept as Solution but this sure looks like a winner!

 

  

Union() is not an option for me because it drops non-unique rows.   I will have a lot of detail lines that appear to be identical and would be dropped if I used a Union() call.

 

 

Thanks so much for your response/ideas.   I always like doing things in one call vs. multiples once the process is proven.  I'll probably stick with separate calls initially while I'm building.  Easier to debug.

And I love your cool dropdown/hidden blurb -- how do you do that?! 

 

Your questions:

Where is the data coming from?    This is coming in as Output() from a call to AI Forms / Read Form Input action.  If you haven't worked with this before, it is a crazy-complex structure but it is a string.    

 

The form that is being read is an Invoice with a varying number of detail lines presented in two columns per page, going from 1 to 3 pages.   In the Modeler, I have mapped each page/column's billing detail content to a table variable in the modeler:  GenericDetail1A, GenericDetail1B, then GenericDetail2A, GenericDetail2B, GenericDetail3A, GenericDetail3B  

 

When the AI Reader is executed it returns an output that contains these tables but only if they exist in the form being read.  If it is a "short" invoice, Output() won't have a reference "inapplicable" variables -- GenericDetail2A, 2B, 3A, 3B won't be part of the data model returned in Output()

 

I access the column/page block by referencing the dynamic variable "GenericDetail1A entries", "GenericDetail1B entries", etc... 

 

The snag is when a GenericDetail* value is not returned -- if referenced (ex: Select action), the flow will fail.

Workaround:  Use coalesce() to default to an empty array if the "real" table isn't there.  If there's a better way to deal with this situation I'd love to hear it!  

 

Will there there always be 6 arrays?   

The short answer is no.  The model defines 6, but the result coming back from the Form Reader on any particular invoice will return only the ones that were "used".   On a short bill with only a few charge lines, it will return GenericCharges1A but none of the rest in its "output()".   But they are used in succession if there's a 3B there's a 3A, if there's a 3A there's a 2B and so forth 

 

But what I'm trying to do is take those component clumps of data and reassemble them in the correct order to create a single list of the charges that I can then process -- identify header/footers, pluck off data elements like phone # from section head rows to apply to the detail lines. 

 

What's in the arrays?

Embarrassingly simple.

[
  {
    "Charge Name""nFO - Business Fiber Voice Service",
    "Charge Amount"".00"
  },
  {
    "Charge Name""Voice Service Charges for ### 363-####",
    "Charge Amount"""
  },
  {
    "Charge Name""Access Recovery Chrg-Multi Line Business",
    "Charge Amount""3.00"
  },
  {
    "Charge Name""CALL FWD BUS. **",
    "Charge Amount"".00"
  },
  {
    "Charge Name""CALL ID(BUS) **",
    "Charge Amount"".00"
  },
  {
    "Charge Name""INTERSTATE ACC CHG - BUS-MULTI",
    "Charge Amount""9.20"
  },
  {
    "Charge Name""FUSC MULTILINE **",   
etc......
 
This raw array/table doesn't just contain the detail-level data, but also section header/footer data that will be processed out after all the component tables are reassembled and processed (for that I definitely need a For Each loop).
 
I think you've put me on the right track tho with "start with a string of array data, strip out [ ], then concatenate those results together as an array.   

OK, knowing that this is in each of the arrays really helps:

 

 

[
  {
    "Charge Name": "nFO - Business Fiber Voice Service",
    "Charge Amount": ".00"
  },
  {
    "Charge Name": "Voice Service Charges for ### 363-####",
    "Charge Amount": ""
  },
  {
    "Charge Name": "Access Recovery Chrg-Multi Line Business",
    "Charge Amount": "3.00"
  },
  {
    "Charge Name": "CALL FWD BUS. **",
    "Charge Amount": ".00"
  },
  {
    "Charge Name": "CALL ID(BUS) **",
    "Charge Amount": ".00"
  },
  {
    "Charge Name": "INTERSTATE ACC CHG - BUS-MULTI",
    "Charge Amount": "9.20"
  }
]

 

 

If I look at what is in the pre-processed image, and what you have there, I'm seeing that you've done some work on that data already.

 

Would that be a bad read of the situation?

 

I still think it can be done without an apply to each, it'll just take a bit of doing is all.

 

Irrespective of any logic in there, I would assume that you wish to split any 'mega' array on:

Voice Service Charges for ### 363-####

As that appears to define the separate batches, there.

 

If you don't wish to expose your flow here, you can send me a private message with it in, as I think that it doesn't appear to be including the multiples (1, 2, etc) that are before the charge descriptions ("CALL FWD BUS. **", etc), and surely you'd want that data, right?

 

I can't afford to pay for AI just to see how it handles / outputs that image, though, apologies. 😅

 

I've obviously a few ideas about how you can handle the multiple inputs, but it depends on where they're coming from, that's all. For example, if each array is coming from the same thing, then the slice() stuff might be pointless in its current context, or it might only need to be written once within a clever Select action that works on a range() function.

I totally agree -- AI is too expensive to purchase it to troubleshoot for someone else!

But the heart of my question is one of array manipulation, not AI Forms.

 

Yes, what I sent is the result of taking that crazy-complex Output() with GUID-named columns and creating the simple two-column table I modeled in the first place using a SELECT on the Output() from AI Reader.  

 

The heart of my question is not an AIForms one, but array manipulation -- how do I take two or more sets of array/tabular data stored in separate variables and append them (not join, append) together.  

The ideal option would be Union() but it drops duplicate rows (I will have duplicate charges) and there is no UnionAll()

For me the solution as suggested by @ekarim2020  is: 

1)converting each table/array to a string

2)stripping off the leading [ and trailing ] on each of those strings

3)reassembling those strings using concat()

4)convert that long string back to an array using json()

 

This can be done in one nested function as I believe you had suggested.  

So I've extracted just the values I need for each Page/Column table using Select  -- no getting around that because the column reference IDs are uniquely named.

Then in a nested function call in Select/From create the consolidated result set I need as a starting point for processing the charges.    

 

So glad that you have a solution, Melissa!

 

I will say that you still have the problem of when more arrays need processing, but I guess you can save that for another time. 🙂

 

That's why I really wanted to see an actual representation of what you have that's showing you the arrays.

 

With that, I could make the solution provided so that it doesn't have separate slice functions, and instead relies on one or two select actions. Ideally you want to be data agnostic.

Thanks for sharing your feed back!

 

Ellis

MelissaReed
Helper V
Helper V

I just came across an excellent and "in one step" way to concatenate arrays   (append without dropping duplicates): 

 https://recursion.no/blogs/power-automate-extract-combine-join-and-filter-array-values/    

 

"convert the array to string object, and then concatenate them and replace the brackets in between. Then you need to convert it back to an array object afterwards."

 

json(replace(concat(

                                   string(outputs('arrArray1'))

                                   ,string(outputs('arrArray2'))

                                  ,  << and so forth for each array >>        

                      ),   '"]["',    '","')  )

 

Note carefully the replace() values are 

             singlequote, doublequote, end bracket, startbracket, doublequote, singlequote  

and 

            singlequote, doublequote, comma, doublequote, singlequote.

It's kinda hard to see when they're rammed up together 

 

Also I put commas at the start of the line for each array I'm appending.  The array expressions do need to be separated by  commas! 

 

This is much easier (and reproducible ) than the other solutions I've seen so I am going to mark this as Solution so more people can find it.

Helpful resources

Announcements

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)

Tuesday Tip: Subscriptions & Notifications

TUESDAY TIPS are our way of communicating helpful things we've learned or shared that have helped members of the Community. Whether you're just getting started or you're a seasoned pro, Tuesday Tips will help you know where to go, what to look for, and navigate your way through the ever-growing--and ever-changing--world of the Power Platform Community! We cover basics about the Community, provide a few "insider tips" to make your experience even better, and share best practices gleaned from our most active community members and Super Users.   With so many new Community members joining us each week, we'll also review a few of our "best practices" so you know just "how" the Community works, so make sure to watch the News & Announcements each week for the latest and greatest Tuesday Tips!   This Week: All About Subscriptions & Notifications We don't want you to a miss a thing in the Community! The best way to make sure you know what's going on in the News & Announcements, to blogs you follow, or forums and galleries you're interested in is to subscribe! These subscriptions ensure you receive automated messages about the most recent posts and replies. Even better, there are multiple ways you can subscribe to content and boards in the community! (Please note: if you have created an AAD (Azure Active Directory) account you won't be able to receive e-mail notifications.)   Subscribing to a Category  When you're looking at the entire category, select from the Options drop down and choose Subscribe.     You can then choose to Subscribe to all of the boards or select only the boards you want to receive notifications. When you're satisfied with your choices, click Save.     Subscribing to a Topic You can also subscribe to a single topic by clicking Subscribe from the Options drop down menu, while you are viewing the topic or in the General board overview, respectively.     Subscribing to a Label Find the labels at the bottom left of a post.From a particular post with a label, click on the label to filter by that label. This opens a window containing a list of posts with the label you have selected. Click Subscribe.     Note: You can only subscribe to a label at the board level. If you subscribe to a label named 'Copilot' at board #1, it will not automatically subscribe you to an identically named label at board #2. You will have to subscribe twice, once at each board.   Bookmarks Just like you can subscribe to topics and categories, you can also bookmark topics and boards from the same menus! Simply go to the Topic Options drop down menu to bookmark a topic or the Options drop down to bookmark a board. The difference between subscribing and bookmarking is that subscriptions provide you with notifications, whereas bookmarks provide you a static way of easily accessing your favorite boards from the My subscriptions area.   Managing & Viewing Your Subscriptions & Bookmarks To manage your subscriptions, click on your avatar and select My subscriptions from the drop-down menu.     From the Subscriptions & Notifications tab, you can manage your subscriptions, including your e-mail subscription options, your bookmarks, your notification settings, and your email notification format.     You can see a list of all your subscriptions and bookmarks and choose which ones to delete, either individually or in bulk, by checking multiple boxes.     A Note on Following Friends on Mobile Adding someone as a friend or selecting Follow in the mobile view does not allow you to subscribe to their activity feed. You will merely be able to see your friends’ biography, other personal information, or online status, and send messages more quickly by choosing who to send the message to from a list, as opposed to having to search by username.

Monthly Community User Group Update | April 2024

The monthly Community User Group Update is your resource for discovering User Group meetings and events happening around the world (and virtually), welcoming new User Groups to our Community, and more! Our amazing Community User Groups are an important part of the Power Platform Community, with more than 700 Community User Groups worldwide, we know they're a great way to engage personally, while giving our members a place to learn and grow together.   This month, we welcome 3 new User Groups in India, Wales, and Germany, and feature 8 User Group Events across Power Platform and Dynamics 365. Find out more below. New Power Platform User Groups   Power Platform Innovators (India) About: Our aim is to foster a collaborative environment where we can share upcoming Power Platform events, best practices, and valuable content related to Power Platform. Whether you’re a seasoned expert or a newcomer looking to learn, this group is for you. Let’s empower each other to achieve more with Power Platform. Join us in shaping the future of digital transformation!   Power Platform User Group (Wales) About: A Power Platform User Group in Wales (predominantly based in Cardiff but will look to hold sessions around Wales) to establish a community to share learnings and experience in all parts of the platform.   Power Platform User Group (Hannover) About: This group is for anyone who works with the services of Microsoft Power Platform or wants to learn more about it and no-code/low-code. And, of course, Microsoft Copilot application in the Power Platform.   New Dynamics365 User Groups   Ellucian CRM Recruit UK (United Kingdom) About: A group for United Kingdom universities using Ellucian CRM Recruit to manage their admissions process, to share good practice and resolve issues.    Business Central Mexico (Mexico City) About:  A place to find documentation, learning resources, and events focused on user needs in Mexico. We meet to discuss and answer questions about the current features in the standard localization that Microsoft provides, and what you only find in third-party locations. In addition, we focus on what's planned for new standard versions, recent legislation requirements, and more. Let's work together to drive request votes for Microsoft for features that aren't currently found—but are indispensable.   Dynamics 365 F&O User Group (Dublin) About: The Dynamics 365 F&O User Group - Ireland Chapter meets up in person at least twice yearly in One Microsoft Place Dublin for users to have the opportunity to have conversations on mutual topics, find out what’s new and on the Dynamics 365 FinOps Product Roadmap, get insights from customer and partner experiences, and access to Microsoft subject matter expertise.  Upcoming Power Platform Events    PAK Time (Power Apps Kwentuhan) 2024 #6 (Phillipines, Online) This is a continuation session of Custom API. Sir Jun Miano will be sharing firsthand experience on setting up custom API and best practices. (April 6, 2024)       Power Apps: Creating business applications rapidly (Sydney) At this event, learn how to choose the right app on Power Platform, creating a business application in an hour, and tips for using Copilot AI. While we recommend attending all 6 events in the series, each session is independent of one another, and you can join the topics of your interest. Think of it as a “Hop On, Hop Off” bus! Participation is free, but you need a personal computer (laptop) and we provide the rest. We look forward to seeing you there! (April 11, 2024)     April 2024 Cleveland Power Platform User Group (Independence, Ohio) Kickoff the meeting with networking, and then our speaker will share how to create responsive and intuitive Canvas Apps using features like Variables, Search and Filtering. And how PowerFx rich functions and expressions makes configuring those functionalities easier. Bring ideas to discuss and engage with other community members! (April 16, 2024)     Dynamics 365 and Power Platform 2024 Wave 1 Release (NYC, Online) This session features Aric Levin, Microsoft Business Applications MVP and Technical Architect at Avanade and Mihir Shah, Global CoC Leader of Microsoft Managed Services at IBM. We will cover some of the new features and enhancements related to the Power Platform, Dataverse, Maker Portal, Unified Interface and the Microsoft First Party Apps (Microsoft Dynamics 365) that were announced in the Microsoft Dynamics 365 and Power Platform 2024 Release Wave 1 Plan. (April 17, 2024)     Let’s Explore Copilot Studio Series: Bot Skills to Extend Your Copilots (Makati National Capital Reg... Join us for the second installment of our Let's Explore Copilot Studio Series, focusing on Bot Skills. Learn how to enhance your copilot's abilities to automate tasks within specific topics, from booking appointments to sending emails and managing tasks. Discover the power of Skills in expanding conversational capabilities. (April 30, 2024)   Upcoming Dynamics365 Events    Leveraging Customer Managed Keys (CMK) in Dynamics 365 (Noida, Uttar Pradesh, Online) This month's featured topic: Leveraging Customer Managed Keys (CMK) in Dynamics 365, with special guest Nitin Jain from Microsoft. We are excited and thankful to him for doing this session. Join us for this online session, which should be helpful to all Dynamics 365 developers, Technical Architects and Enterprise architects who are implementing Dynamics 365 and want to have more control on the security of their data over Microsoft Managed Keys. (April 11, 2024)       Stockholm D365 User Group April Meeting (Stockholm) This is a Swedish user group for D365 Finance and Operations, AX2012, CRM, CE, Project Operations, and Power BI.  (April 17, 2024)         Transportation Management in D365 F&SCM Q&A Session (Toronto, Online) Calling all Toronto UG members and beyond! Join us for an engaging and informative one-hour Q&A session, exclusively focused on Transportation Management System (TMS) within Dynamics 365 F&SCM. Whether you’re a seasoned professional or just curious about TMS, this event is for you. Bring your questions! (April 26, 2024)   Leaders, Create Your Events!    Leaders of existing User Groups, don’t forget to create your events within the Community platform. By doing so, you’ll enable us to share them in future posts and newsletters. Let’s spread the word and make these gatherings even more impactful! Stay tuned for more updates, inspiring stories, and collaborative opportunities from and for our Community User Groups.   P.S. Have an event or success story to share? Reach out to us – we’d love to feature you. Just leave a comment or send a PM here in the Community!

Exclusive LIVE Community Event: Power Apps Copilot Coffee Chat with Copilot Studio Product Team

We have closed kudos on this post at this time. Thank you to everyone who kudo'ed their RSVP--your invitations are coming soon!  Miss the window to RSVP? Don't worry--you can catch the recording of the meeting this week in the Community.  Details coming soon!   *****   It's time for the SECOND Power Apps Copilot Coffee Chat featuring the Copilot Studio product team, which will be held LIVE on April 3, 2024 at 9:30 AM Pacific Daylight Time (PDT).     This is an incredible opportunity to connect with members of the Copilot Studio product team and ask them anything about Copilot Studio. We'll share our special guests with you shortly--but we want to encourage to mark your calendars now because you will not want to miss the conversation.   This live event will give you the unique opportunity to learn more about Copilot Studio plans, where we’ll focus, and get insight into upcoming features. We’re looking forward to hearing from the community, so bring your questions!   TO GET ACCESS TO THIS EXCLUSIVE AMA: Kudo this post to reserve your spot! Reserve your spot now by kudoing this post.  Reservations will be prioritized on when your kudo for the post comes through, so don't wait! Click that "kudo button" today.   Invitations will be sent on April 2nd.Users posting Kudos after April 2nd at 9AM PDT may not receive an invitation but will be able to view the session online after conclusion of the event. Give your "kudo" today and mark your calendars for April 3, 2024 at 9:30 AM PDT and join us for an engaging and informative session!

Tuesday Tip: Blogging in the Community is a Great Way to Start

TUESDAY TIPS are our way of communicating helpful things we've learned or shared that have helped members of the Community. Whether you're just getting started or you're a seasoned pro, Tuesday Tips will help you know where to go, what to look for, and navigate your way through the ever-growing--and ever-changing--world of the Power Platform Community! We cover basics about the Community, provide a few "insider tips" to make your experience even better, and share best practices gleaned from our most active community members and Super Users.   With so many new Community members joining us each week, we'll also review a few of our "best practices" so you know just "how" the Community works, so make sure to watch the News & Announcements each week for the latest and greatest Tuesday Tips!   This Week's Topic: Blogging in the Community Are you new to our Communities and feel like you may know a few things to share, but you're not quite ready to start answering questions in the forums? A great place to start is the Community blog! Whether you've been using Power Platform for awhile, or you're new to the low-code revolution, the Community blog is a place for anyone who can write, has some great insight to share, and is willing to commit to posting regularly! In other words, we want YOU to join the Community blog.    Why should you consider becoming a blog author? Here are just a few great reasons. 🎉   Learn from Each Other: Our community is like a bustling marketplace of ideas. By sharing your experiences and insights, you contribute to a dynamic ecosystem where makers learn from one another. Your unique perspective matters! Collaborate and Innovate: Imagine a virtual brainstorming session where minds collide, ideas spark, and solutions emerge. That’s what our community blog offers—a platform for collaboration and innovation. Together, we can build something extraordinary. Showcase the Power of Low-Code: You know that feeling when you discover a hidden gem? By writing about your experience with your favorite Power Platform tool, you’re shining a spotlight on its capabilities and real-world applications. It’s like saying, “Hey world, check out this amazing tool!” Earn Trust and Credibility: When you share valuable information, you become a trusted resource. Your fellow community members rely on your tips, tricks, and know-how. It’s like being the go-to friend who always has the best recommendations. Empower Others: By contributing to our community blog, you empower others to level up their skills. Whether it’s a nifty workaround, a time-saving hack, or an aha moment, your words have impact. So grab your keyboard, brew your favorite beverage, and start writing! Your insights matter and your voice counts! With every blog shared in the Community, we all do a better job of tackling complex challenges with gusto. 🚀 Welcome aboard, future blog author! ✍️💻🌟 Get started blogging across the Power Platform Communities today! Just follow one of the links below to begin your blogging adventure.   Power Apps: https://powerusers.microsoft.com/t5/Power-Apps-Community-Blog/bg-p/PowerAppsBlog Power Automate: https://powerusers.microsoft.com/t5/Power-Automate-Community-Blog/bg-p/MPABlog Copilot Studio: https://powerusers.microsoft.com/t5/Copilot-Studio-Community-Blog/bg-p/PVACommunityBlog Power Pages: https://powerusers.microsoft.com/t5/Power-Pages-Community-Blog/bg-p/mpp_blog   When you follow the link, look for the Message Admins button like this on the page's right rail, and let us know you're interested. We can't wait to connect with you and help you get started. Thanks for being part of our incredible community--and thanks for becoming part of the community blog!

Launch Event Registration: Redefine What's Possible Using AI

  Join Microsoft product leaders and engineers for an in-depth look at the latest features in Microsoft Dynamics 365 and Microsoft Power Platform. Learn how advances in AI and Microsoft Copilot can help you connect teams, processes, and data, and respond to changing business needs with greater agility. We’ll share insights and demonstrate how 2024 release wave 1 updates and advancements will help you:   Streamline business processes, automate repetitive tasks, and unlock creativity using the power of Copilot and role-specific insights and actions. Unify customer data to optimize customer journeys with generative AI and foster collaboration between sales and marketing teams. Strengthen governance with upgraded tools and features. Accelerate low-code development  using natural language and streamlined tools. Plus, you can get answers to your questions during our live Q&A chat! Don't wait--register today by clicking the image below!      

Users online (6,574)