cancel
Showing results for 
Search instead for 
Did you mean: 
Reply
andjelamiha97
Helper I
Helper I

2 step dynamic approval workflow

Hi everyone. I am trying to build a flow with a 2 step dynamic approval. I was looking at @RezaDorrani videos and he has awesome content, but i just can't seem to figure out how to do this. I will include my flow below and the lists from which the flow is pulling out the information from. 

As i said this would be a 2 step approval, but both approval steps to be dynamic in nature. We have a list of applications as one column, asset owners as a second column, and access provisioning as a third column. The flow would work like this: So, we have a SharePoint Site>end user goes there to submit a request for app access>chooses the app from the dropdown menu >we want the asset owner to approve it first (to dynamicaly pull it from the second column), once it is approved>it goes to the second person to create the account (to dynamically pull the person from the third column). So, basically to pull the approvers 2 times from different columns. My approval matrix has : application, asset owner approver, access provisioner. I have made the flow work where only the first part is dynamic. It goes to the appropriate asset owner (pulling it from the second column)>and then the second part of the flow start another approval, but i couldn't make it dynamic (to pull the access provisioners from the third column.)

 

This is where the user submits a request - when they choose the application it goes to the appropriate asset owner, and then it should go to the appropriate access provisioner(column named provisioning), (still trying to figure that part out).

Capture1.PNG

 

This is the list and the columns from which the flow is pulling the info from.

Capture.PNG

 

My flow:

Capture2.PNG

Capture4.PNGThis is the approval that i would like to be dynamic. Basically like the first one. I would want the second approval to choose the right people from the "Provisioning" column and send it to the assigned peopleThis is the approval that i would like to be dynamic. Basically like the first one. I would want the second approval to choose the right people from the "Provisioning" column and send it to the assigned people

 

This is where i would want the approval to be dynamic in nature as well. I would like for the flow to pull the people from the "Provisioning" column and send the approval to the assigned people based on each application.

Capture6.PNG

 

Capture7.PNG

 

Can someone please help me? @MarconettiMarco @Pstork1 @RezaDorrani 

3 ACCEPTED SOLUTIONS

Accepted Solutions
ChadVKealey
Memorable Member
Memorable Member

To keep things organized, I would suggest adding two "Compose" steps at the start of the flow, one to store the Approver email(s) and the other the Provisioner email(s). If those columns are single-select Person columns, it's pretty easy to set the Compose action; just select <column-name> Email from dynamic content. If one or both is a multi-select person field, it's a bit more complicated. The cleanest way to handle that is with a Select action which produces an array of the email addresses and then the Join expression to concatenate them into a semi-colon separated string (which the Approval action will accept in the Assigned to field). See https://youtu.be/fjYNT0EgzAU for a walk-through of the select-join process for a multi-select person field.

View solution in original post

Pstork1
Most Valuable Professional
Most Valuable Professional

The only change then would be to use a Get Items, which you are doing,  from the trigger to get the one application from the applications list that matches the value of the dropdown selected.  The rest works the way my sample is setup except you use the first() value from the get items of the application list as the approvers and provisioners values.  So all your really need is a variable set for Object and load the First record from the get items into that.  it should look like

first(items('Get_Approvers')?['body'])


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

View solution in original post

This is certainly possible, and there are several ways to accomplish it. Some would complicate the list (adding calculated columns for each of the reminder dates), others would complicate the flow (calculate the reminder dates and then "Get items" from the list where the reminder date is the current date). I would choose to keep the complication in the flow (because users interacting with the list could have an impact on those columns). 

 

Here's how I would do it:

1. Use the recurrence trigger to run the flow each morning.

2. Use the Add to time action to add 90 days to the current date and format the output as yyyy-MM-dd

3. Add a Get items action to retrieve all items where Expiration date is less than or equal to that calculated date

4. Add a Filter array action to identify those items (from the Get items output) where Expiration date is equal to the current date plus 90 days

5. Add an Apply to each loop to iterate through the output of the Filter array action and send an email for each item

6. Add more "Add to time" actions for the other milestones (60 days, 30 days, etc.) and Filter array & Apply to each actions for each (basically, repeat steps 4 & 5 for each milestone)

 

The premise here is by getting everything where the expiration date is less than or equal to the current date plus 90 days, you get all of the items you might need to send an email for with one API call to SharePoint. Then, you can just filter the data that's returned recursively for each milestone. This is the most efficient way to do it from SharePoint's perspective, but if you'll have LOTS (like, 5,000 or more) items being returned in that first action, you might be better off repeating the Get items action for each milestone date.

View solution in original post

25 REPLIES 25
Pstork1
Most Valuable Professional
Most Valuable Professional

Who and how is the Provisioning column assigned? That appears to me to be the sticky spot.  Having the flow pick and send the approval to the right person is relatively easy if the selection is there.

 

Who fills in the Provisioning column? And at what point is that choice made? 



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

So, I will fill the column out. As you can see there is only one name in the "Provisioning" Column. I put it like that for testing purposes. So, if someone goes and wants to send a request to access adobe, the flow would first send it to the assigned asset owner (the second column), once it it approved, it would send it to the person in the "provisioning" column. For the provisioning column, depending on the app, we would have 1 person assigned, maximum 2 or 3. But we can start with one. So, that is all i need, to make my flow send it to the right person by pulling it from the "provisioning" column, dynamically. Thank you for responding so fast! So, once i have the flow ready, i will fill out the column completely, it won't be empty. I just left like this for now, before i get the flow going and test in on myself first.

Would you please be able to help me add that additional dynamic approval for the "provisioning" column as well? The first one already works - it chooses the person from the "approver" column, i would just want to add another one. Once the "Approver" approves, to move to the second "start and wait for an approval" but to choose the people from the second column "provisioning". I tried this by adding another "initialize a variable" and then setting a variable, my flow runs successfully, but nothing happens, nobody gets anything. If you can please help me 🙂

Pstork1
Most Valuable Professional
Most Valuable Professional

Since you are using the When an item is created trigger then the values in both columns should be available inside the flow. The flow would be pretty simple

1) Trigger when an item is created

2) Send the approval to the person in the Approvers column ad wait for the response

3) If the Outcome doesn't include "Reject" then send the approval to the person in the Provisioning column.



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

Hi. Yes. I am having troubles with including both. Would you have an example? Would you please tell me how to do that or how to build it? I know I am asking for a lot, but I have spent the past 4 days working on this and no success, i am desperate. 

ChadVKealey
Memorable Member
Memorable Member

To keep things organized, I would suggest adding two "Compose" steps at the start of the flow, one to store the Approver email(s) and the other the Provisioner email(s). If those columns are single-select Person columns, it's pretty easy to set the Compose action; just select <column-name> Email from dynamic content. If one or both is a multi-select person field, it's a bit more complicated. The cleanest way to handle that is with a Select action which produces an array of the email addresses and then the Join expression to concatenate them into a semi-colon separated string (which the Approval action will accept in the Assigned to field). See https://youtu.be/fjYNT0EgzAU for a walk-through of the select-join process for a multi-select person field.

Pstork1
Most Valuable Professional
Most Valuable Professional

Here's an example using a single approver and a provisioner. I did add a choice field to record the approval status.

image.png

image.png

image.png



-------------------------------------------------------------------------
If I have answered your question, please mark your post as Solved.
If you like my response, please give it a Thumbs Up.
Pstork1
Most Valuable Professional
Most Valuable Professional

See the screenshot above.  You don't need a variable if the provisioning user is there when you create the item.



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

Hi. This is where i probably didn't explain. I have 2 different lists. One is called RFA Submissions and the other is called Applications. The RFA Submissions is where a person will submit a request, they will open a new form and they will have a dropdown menu to choose the application (application name). The dropdown menu is connected to the second list "Applications" where all the applications are listed (title column), approver column and a provisioning column. So "when an item is created" is happening in the "RFA Submissions" list, the person submitting a request doesn't even see the "applications" list nor who the approver or provisioner is.

This is the list where the user will come and submit a request. They would click on the "new" button.

Capture.PNG

 

The pic above - Once they click on the new button, the have to input some general info, and there will be a dropdown menu of all the applications that are listed in the "applications" list. The applications list is just used for the flow to pull the correct approver and provisioner based on what application they choose from the dropdown menu in the rfa submissions list.

Capture2.PNG

The pic above - this is the dropdown menu i was talking about. Once they select the application, the flow would pull the assigned approver from the applications list for that specific application, and that part of the flow is working. But i do want to add another step, that once it is approved, it will go to the second person, the provisioner, based on the application they selected. So, if they selected Adobe, it would go to Andjela Mihajlovic to approve, once approved, it would go to Andjela to create the account (those names are for testing purposes only). I hope I made it clear.

Capture1.PNG

 

The above pic - this is the applications list. The user wouldn't come here to submit the request. This list is used by the flor to pull the right people based on the application they selected from the rfa submissions list from that dropdown menu. 

 

Capture3.PNG

This is a part of my flow where i connect the title from the "applications" list (the title is where all the apps are listed) to the "application name" dropdown menu from the rfa submissions list, where they send the request.

 

Can you please help me do this?

Hi, thank you for you reply. Do i just add the compose steps to the flow i already have?

Pstork1
Most Valuable Professional
Most Valuable Professional

The only change then would be to use a Get Items, which you are doing,  from the trigger to get the one application from the applications list that matches the value of the dropdown selected.  The rest works the way my sample is setup except you use the first() value from the get items of the application list as the approvers and provisioners values.  So all your really need is a variable set for Object and load the First record from the get items into that.  it should look like

first(items('Get_Approvers')?['body'])


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

Thank you! Is there any way to advance the flow for the user to be able to choose multiple applications from the dropdown menu, but for the flow to work in the same way. So, let’s say i want to submit the request  and i want to select 5 applications from the dropdown menu, but for the flow to send the approval to 5 different people (approvers) assigned to those selected applications and then to send them to 5 different provisioners?

Thank you! Is there any way to advance the flow for the user to be able to choose multiple applications from the dropdown menu, but for the flow to work in the same way. So, let’s say i want to submit the request  and i want to select 5 applications from the dropdown menu, but for the flow to send the approval to 5 different people (approvers) assigned to those selected applications and then to send them to 5 different provisioners?

Yes, you could modify the "Application" lookup column to allow multiple selections. Just be aware that doing so will change the format of data in that column to be an array. So, in your flow, you would need to put all of the existing actions (except the trigger) into a "Apply to each" loop that iterates over each selected application. 

 

So, yes, absolutely possible, but it makes the process just a bit more complicated because of the loop.

Hi! Thank you so much for getting back to me.

 

This is my flow right now: And how it works, the person submits a request choosing the application>the flow pulls the information of the approver from the applications list>sends it for approval>if approved>pulls the data of the provisioner>sends it for approval

 

Capture.PNGCapture2.PNGCapture3.PNGCapture4.PNGCapture5.PNGCapture6.PNG

 

So, I would like my end user to be able to select for example 3 applications (i already put it to be multiselect), and for the flow to pull the different approvers for those 3 different applications>sends the approvals>if approved (i am curious to see how would that work, do we wait for everyone to approve or if i put first to respond and then lets say application one get approved, it moves to the second step, application two get approved, moves to the second step)>once they get approved one by one to keep sending them to the second person(provisioner)>in this case 3 different people as well and wait for an approval..

 

Would you please be able to show me which part i should change and where exactly should i make those changes?

 

Pstork1
Most Valuable Professional
Most Valuable Professional

Essentially, you'll put everything except the trigger inside an apply to each loop.  Then set the loop to run in parallel.  Inside each loop you will process one application.  The biggest issue will be what do you do if not all the application requests are approved?  You might pick 5 applications and have 3 approved and 2 denied.  Does that mean all the applications are denied? I suspect you would be better off having the user make the request on a per application basis and just running the flow multiple times.  Otherwise handling all the different permutations will get very complex.



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

Hello Chad! I am working on creating another flow that would send the certificate expiration reminders to the assigned cert owners. So, I have a list with all the certs, their expiration dates and their owners (the people i would like to receive an expiration email reminder). I would like for them to receive an expiration email reminders 90, 60, 30,14 days before the cert's expiration date. How would i go about this? Would you please be able to help me?

This is certainly possible, and there are several ways to accomplish it. Some would complicate the list (adding calculated columns for each of the reminder dates), others would complicate the flow (calculate the reminder dates and then "Get items" from the list where the reminder date is the current date). I would choose to keep the complication in the flow (because users interacting with the list could have an impact on those columns). 

 

Here's how I would do it:

1. Use the recurrence trigger to run the flow each morning.

2. Use the Add to time action to add 90 days to the current date and format the output as yyyy-MM-dd

3. Add a Get items action to retrieve all items where Expiration date is less than or equal to that calculated date

4. Add a Filter array action to identify those items (from the Get items output) where Expiration date is equal to the current date plus 90 days

5. Add an Apply to each loop to iterate through the output of the Filter array action and send an email for each item

6. Add more "Add to time" actions for the other milestones (60 days, 30 days, etc.) and Filter array & Apply to each actions for each (basically, repeat steps 4 & 5 for each milestone)

 

The premise here is by getting everything where the expiration date is less than or equal to the current date plus 90 days, you get all of the items you might need to send an email for with one API call to SharePoint. Then, you can just filter the data that's returned recursively for each milestone. This is the most efficient way to do it from SharePoint's perspective, but if you'll have LOTS (like, 5,000 or more) items being returned in that first action, you might be better off repeating the Get items action for each milestone date.

@ChadVKealey Thank you! 

I have another scenario if you could help with that. And it goes back to the original question of this post.  I have a list with 4 columns "Application name" and a person column "Approver", a person column "Provisioner 1", and another person column "Provisioner 2". Specific people are assigned for all 3 person columns. When an item is created, i want it to start and wait on approval and send it to the assigned "approver" first, then once approved to start and wait for an approval again and send it to the assigned "provisioner 1", and then once that one is approved, start and wait for a third approval and send it to the "provisioner 2". 

I got the first 2 approvals to work, but i am having issues with the third approval that is pulling the information from the "Provisioner 2" column. This column has people assigned to it, but some are blank, non assigned. I would like for the flow to check if anyone is assigned first. If yes, move it forward and send it to that last person "Provisioner 2" for final approval. If no one is assigned, i would just like for the flow to be done or whatever else is needed to make the flow be done, if that makes sense. I have followed your video for multi-select approvals with compose, select and join. I just can't figure out how to check if the column is empty (does not contain an assigned person), before starting and waiting for an approval for the "provisioner2". Would you be able to help with that?

Please see below the error i receive.

 

1.PNG2.PNG

 

This is my flow before it is ran.

3.PNG4.PNG

Please note "Provisioning1" in the flow is "Provisioner2" column i was referring to.

Helpful resources

Announcements

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!      

March 2024 Newsletter

Welcome to our March 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 subscribe to News & Announcements in your community 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 PagesWarrenBelzAgniusMattJimisonragavanrajanLaurensMfernandosilvafernandosilvaLucas001Rajkumar_404wskinnermctccpaytonHaressh2728timlNived_NambiarcapuanodaniloMariamPaulachanJmanriqueriosUshaJyothi20inzil2kvip01PstorkVictorIvanidzejsrandhawarenatoromaodpoggemannmichael0808deeksha15795prufachEddieEgrantjenkinsExpiscornovusdeeksha15795SpongYeRhiassuringdeeksha15795apangelesM_Ali_SZ365ManishSolankiSanju1jamesmuller   LATEST NEWS Business Applications Launch Event - Virtual - 10th April 2024 Registration is still open for the Microsoft Business Applications Launch event which kicks off at 9am PST on Wednesday 10th April 2024. Join Microsoft product leaders and engineers for an in-depth look at the latest news and AI capabilities in Power Platform and Dynamics 365, featuring the likes of Charles Lamanna, Sangya Singh, Julie Strauss, Donald Kossmann, Lori Lamkin, Georg Glantschnig, Mala Anand, Jeff Comstock, and Mike Morton.   If you'd like to learn about the latest advances in AI and how #MicrosoftCopilot can help you streamline your processes, click the image below to register today!     Power Apps LIVE Copilot Coffee Chat - 9.30am 3rd April 2024 Be sure to check out our exclusive LIVE community event, "Power Apps Copilot Coffee Chat with Copilot Studio Product Team", which kicks off next week.   This is a unique opportunity to connect and converse with members of the Copilot Studio product team to learn more about their plans and insights into upcoming features. Click the image below to learn how to gain access!     Get Started with AI Prompts - Friday 29th March 2024 Join April Dunnam, Gomolemo Mohapi, and the team as they launch a new multi-week video series on our YouTube channelto show how you can power up your AI experience with Power Automate.   Here you'll discover how to create custom AI Prompts to use in your Power Platform solutions, with the premier available to view at 9am on Friday 29th March 2024. Click the image below to get notified when the video goes live!     UPCOMING EVENTS North American Collab Summit - Texas - 9-11th April 2024 It's not long now until the #NACollabSummit, which takes place at the Irving Convention Center in Texas on April 11-13th 2024. This amazing event will see business leaders, IT pros, developers, and end users, come together to learn how the latest Microsoft technologies can power teamwork, engagement, communication, and organizational effectiveness.   This is a great opportunity to learn from some amazing speakers and shining lights across #WomenInTech, with guests including the likes of Liz Sundet, Cathy Dew, Rebecka Isaksson, Isabelle Van Campenhoudt, Theresa Lubelski, Shari L. Oswald, Emily Mancini,Katerina Chernevskaya, Sharon Weaver, Sandy Ussia, Geetha Sivasailam, and many more.   Click the image below to find out more about this great event!   Dynamic Minds Conference - Slovenia - 27-29th May 2024 The DynamicsMinds Conference is almost upon us, taking place on 27-29th May at the Grand Hotel Bernardin in Slovenia. With over 150 sessions and 170 speakers, there's sure to be something for everyone across this awesome three-day event. There's an amazing array of speakers, including Dona Sarkar, Georg Glantschnig, Elena Baeva, Chris Huntingford, Lisa Crosbie, Ilya Fainberg, Keith Whatling, Malin Martnes, Mark Smith, Rachel Profitt, Renato Fajdiga, Shannon Mullins, Steve Mordue, Tricia Sinclair, Tommy Skaue, Victor Dantas, Sara Lagerquist, and many more.   Click the image below to meet more of the #MicrosoftCommunity in Slovenia to learn, mingle, and share your amazing ideas!     European Power Platform Conference - Belgium - 11-13th June It's time to make a note in your diary for the third European Power Platform Conference, which takes place at the SQUARE-BRUSSELS CONVENTION CENTRE on 11-13th June in Belgium.   This event brings together the Microsoft Community from across the world for three invaluable days of in-person learning, connection, and inspiration. There's a wide array of expert speakers across #MPPC24, including the likes of Aaron Rendell, Amira Beldjilali, Andrew Bibby, Angeliki Patsiavou, Ben den Blanken, Cathrine Bruvold, Charles Sexton, Chloé Moreau, Chris Huntingford, Claire Edgson, Damien Bird, Emma-Claire Shaw, Gilles Pommier, Guro Faller, Henry Jammes, Hugo Bernier, Ilya Fainberg, Karen Maes, Laura Graham-Brown, Lilian Stenholt Thomsen, Lindsay Shelton, Lisa Crosbie, Mats Necker, Negar Shahbaz, Nick Doelman, Paulien Buskens, Sara Lagerquist, Tricia Sinclair, Ulrikke Akerbæk, and many more.   Click the image below to find out more and register for what is sure to be a jam-packed event in beautiful Brussels!     For more events, click the image below to visit the Community Days website.   LATEST COMMUNITY BLOG ARTICLES Power Apps Community Blog Power Automate Community Blog Copilot Studio Community Blog Power Pages Community Blog Check out 'Using the Community' for more helpful tips and information: Power Apps, Power Automate, Copilot Studio, Power Pages

Users online (7,207)