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

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

19 REPLIES 19
Pstork1
Multi Super User
Multi Super User

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 🙂

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.

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.

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?

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?

 

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

December 2023 User Group Update: Welcoming New Groups and Upcoming Events

A new month means it's time to celebrate and welcome the new user groups that have joined our community. We are excited to announce that we have more than 8 New Groups, which is no surprise after the amazing Microsoft Power Platform Conference. This month, we are breaking them out by the different community categories. If your group is listed here, give this post a kudo so we can celebrate with you! Don't forget to take a look at the many events happening near you or virtually! It's a great time of year to connect and engage with User Groups both locally and online.   Please Welcome Our NEW User Groups   Power Platform: PowerIT User Group: Nottingham Power Platform User Group: Bergen Power Platform User Group: Danmark Nashville Power Platform User Group Microsoft Ambassador Program y Mujer Latina Technolochicas NCWIT Community Copilot Studio:  Copilot User Group Italia Dynamics365: Dynamics User Group AdriaticDynamic 365 Azerbaijan   December User Group Events   01 Dec 2023 Aprendiendo Desarrollo web, creando mi primer power app y power page. 01 Dec 2023 Q4 Hybrid Philadelphia Dynamics 365 & Power Platform User Group Meeting05 Dec 2023APAC Dynamics 365 FastTrack Bootcamp - BI and Analytics07 Dec 2023Bay Area Power Platform Meetup: Learn, Share, and Connect07 Dec 2023Indiana D365/AX December User Group Meeting07 Dec 2023Dynamics User Group Meeting: Houston09 Dec 2023 December '23 - NEW Power Apps User Group Meeting - Online 12 Dec 2023December Cleveland Power Platform User Group Meeting12 Dec 2023 RW2 Data Stewardship Open Forum Discussion 13 Dec 2023  Black Country Power Platform User Group - December 2023 - West Midlands  

Back to Basics: All Ten Tuesday Tips

Our ongoing BACK TO BASICS: TUESDAY TIP series dedicated to helping both new members and seasoned veterans of our community learn and grow reached a milestone ten posts! We're excited to present this "one stop" post for each of our #TuesdayTips, making it easier to find what you're looking for and help you understand the community: from ranking and badges to profile avatars, from being a Super User to blogging in the community, and so much more. Thank you for your incredible support for this series--we are so glad it was able to help so many of you navigate your community experience.   Back to Basics Tuesday Tip #1: All About Your Community Account Find out the basics of your community account. Whether it's changing your username, updating an email address, understanding GDPR, or customizing your profile, this is the place to begin.  ○ Power Apps ○ Power Automate ○ Power Pages ○ Copilot Studio     Back to Basics Tuesday Tip #2: All About Community Ranks Have you ever wondered how your fellow community members earn the different ranks available? What is the difference between an Advocate and a Helper, a Solution Sage and a Community Champion? In this #TuesdayTip, we share the secrets and tips to help YOU keep your ranking growing--and why it's so important to our communities. ○ Power Apps ○ Power Automate ○ Power Pages ○ Copilot Studio     Back to Basics Tuesday Tip #3: Contributing to the Community If you need to understand how subscriptions or notifications work, how to use search to find the answers you're looking for, or editing your posts, this is the place to start. With these handy tips, you'll find what you're looking for, ask some great questions, and format your posts perfectly! ○ Power Apps ○ Power Automate ○ Power Pages ○ Copilot Studio     Back to Basics Tuesday Tip #4: What is a Super User? Have you ever been exploring the community and come across a user with this unique icon next to their name? It means you have found the actual, real-life superheroes of the Power Platform Community! Super Users are our heroes because of the way they are consistently helpful with everything from solutions to flagging spam, offering insight on the community, and so much more! Find out more in this #TuesdayTip.   ○ Power Apps ○ Power Automate ○ Power Pages ○ Copilot Studio     Back to Basics Tuesday Tip #5: How to Become a Community Blog Author We want YOU to be part of the community blog! Sharing your knowledge of Power Platform is an essential part of our community!  By sharing what you know and have learned with the community in the Power Platform in the community blog, you help us create a more engaged and informed community, better equipped to tackle complex challenges.  To get started with blogging across the Power Platform communities, please visit the following links. ○ Power Apps ○ Power Automate ○ Power Pages ○ Copilot Studio     Back to Basics Tuesday Tip #6 All About Community User Groups Being part of, starting, or leading a User Group can have many great benefits for our community members who want to learn, share, and connect with others who are interested in the Microsoft Power Platform and the low-code revolution. Don't wait. Get involved with (or maybe even start) a User Group today--just follow the tips below to get started. ○ Power Apps ○ Power Automate ○ Power Pages ○ Copilot Studio     Back to Basics Tuesday Tip #7: Resources for User Groups Once you've launched your Community User Group, we are excited to have many resources available that can help you lead, engage, and grow your User Group! Whether it's access to the Microsoft Community Tenant for User Groups, help with finding speakers for your User Group meetings (both local and virtual speakers), and even finding spaces to have your meetings in--check out this #TuesdayTip to get what you need! ○ Power Apps ○ Power Automate ○ Power Pages ○ Copilot Studio     Back to Basics Tuesday Tip #8: All About Subscriptions and Notifications Keeping track of what you want to know and how you want to find out about it may seem confusing. This #TuesdayTip is all about your community profile's subscriptions and notifications settings. Check out the links below for clear directions and how-to's. ○ Power Apps ○ Power Automate ○ Power Pages ○ Copilot Studio     Back to Basics Tuesday Tip #9: All About the Community Galleries Have you checked out the library of content in our galleries? Whether you're looking for the latest info on an upcoming event, a helpful webinar, or tips and tricks from some of our most experienced community members, our galleries are full of the latest and greatest video content for the Power Platform communities. Find out more by following the links below. ○ Power Apps ○ Power Automate ○ Power Pages ○ Copilot Studio       Back to Basics Tuesday Tip #10: Community Support Whether you're a seasoned community veteran or just getting started, you may need a bit of help from time to time! If you need to share feedback with the Community Engagement team about the community or are looking for ways we can assist you with user groups, events, or something else, Community Support is the place to start. Community Support is part of every one of our communities, accessible to all our community members, so find out what it means for your community with our last #TuesdayTip. ○ Power Apps ○ Power Automate ○ Power Pages ○ Copilot Studio     Thank you for your support for our #TuesdayTip series. We look forward to bringing you more tips and tricks to help make your community experience the best it can be!

November 2023 Community Newsletter

Welcome to our November 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 the Power Platform and beyond.        This month's highlights:- - Our most active community members- Microsoft Power Up Program- Microsoft Community Days website - The latest blogs and more                 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, just get active! FLMikePstork1Nived_NambiarWarrenBelzSprongYeManishSolankiLaurensMwskinnermlcAgniusExpiscornovuscreativeopinion KatieAUinzil2kHaressh2728hafizsultan242douicmccaughanwoLucas001domliu   Power Up Program Click the image below to discover more about the amazing Microsoft Power Up Program, as Reem Omar, Abbas Godhrawala, Chahine Atallah, Ruby Ruiz Brown, Juan Francisco Sánchez Enciso, Joscelyne Andrade Arévalo, Eric G. and Paulina Pałczyńska share how non-tech professionals can successfully advance into a new career path using Microsoft #PowerPlatform.   To find out more about this amazing initiative, click here to apply for the program and reboot your journey into low-code app development today!     Community Days - Event Website Have you checked out the Community Days website yet? Dedicated to the volunteer community organizers around the world, Community Days is the perfect place to find an event near you or add an event for wider exposure. Many thanks to Thomas Daly, Sharon Weaver, Sedat Tum, Jonathan Weaver, Manpreet Singh, David Leveille, Jason Rivera, Mike Maadarani, Rob Windsor and the team for all their hard work. Anyone can host a Community Day on any topic relevant to our industry, just click the image below to find out more.       EVENT NEWS Power Platform French Summit - Paris/Virtual - 6-7th Dec It's not long now until the Power Platform French Summit, which takes place both virtually and in-person at the Microsoft France conference center in Paris on 6-7th December 2023. If you can't make it in-person, all sessions will also be broadcast on virtual networks for better distribution and accessibility.   There's a fantastic array of speakers, including Jérémy LAPLAINE, Amira Beldjilali, Rémi Chambard, Erika Beaumier, Makenson Frena, Assia Boutera, Elliott Pierret, Clothilde Facon, Gilles Pommier, Marie Aubert, Antoine Herbosa, Chloé Moreau, Raphaël Senis, Rym Ben Hamida, Loïc Cimon, Joséphine Salafia, David Zoonekyndt, Aïcha Charpentier, Henry Jammes, Milene Rochard, Mehdi EL YASSIR, and many more. Click the image below for more information.       LATEST COMMUNITY BLOG ARTICLES Power Apps Community Blog Power Automate Community Blog Copilot Community Blog Power Pages Community Blog

Back to Basics Tuesday Tip #10: Community Support

This is the TENTH post in our ongoing series dedicated to helping the amazing members of our community--both new members and seasoned veterans--learn and grow in how to best engage in the community! Each Tuesday, we feature new content that will help you best understand the community--from ranking and badges to profile avatars, from Super Users to blogging in the community. Our hope is that this information will help each of our community members grow in their experience with Power Platform, with the community, and with each other!   This Week: All About Community Support   Whether you're a seasoned community veteran or just getting started, you may need a bit of help from time to time! If you need to share feedback with the Community Engagement team about the community or are looking for ways we can assist you with user groups, events, or something else, Community Support is the place to start.   Community Support is part of every one of our communities, accessible to all our community members.     Power Apps: https://powerusers.microsoft.com/t5/Community-Support/ct-p/pa_community_support Power Automate: https://powerusers.microsoft.com/t5/Community-Support/ct-p/mpa_community_support Power Pages: https://powerusers.microsoft.com/t5/Community-Support/ct-p/mpp_community_support Copilot Studio: https://powerusers.microsoft.com/t5/Community-Support/ct-p/pva_community-support   Within each community's Community Support page, you'll find three distinct areas, each with a different focus to help you when you need support from us most.     Community Accounts & Registration is the go-to source for any and all information related to your account here in the community. It's full of great knowledge base articles that will help you manage your community account and know what steps to take if you wish to close your account.  ●  Power Apps  ●  Power Automate  ●  Power Pages, ●  Copilot Studio      Using the Community is your source for assistance with everything from Community User Groups to FAQ's and more. If you want to know what kudos are, how badges work, how to level up your User Group or something else, you will probably find the answers here. ●  Power Apps   ● Power Automate    ●  Power Pages  ●  Copilot Studio      Community Feedback is where you can share opportunities, concerns, or get information from the Community Engagement team. It's your best place to post a question about an issue you're having in the community, a general question you need answered. Whatever it is, visit Community Feedback to get the answers you need right away. Our team is honored to partner with you and can't wait to help you!   ●  Power Apps  ● Power Automate   ● Power Pages   ● Copilot Studio  

Microsoft Ignite 2023: The Recap

What an amazing event we had this year, as Microsoft showcased the latest advancements in how AI has the potential to reshape how customers, partners and developers strategize the future of work. Check out below some of our handpicked videos and Ignite announcements to see how Microsoft is driving real change for users and businesses across the globe.   Video Highlights Click the image below to check out a selection of Ignite 2023 videos, including the "Microsoft Cloud in the era of AI" keynote from Scott Guthrie, Charles Lamanna, Arun Ulag, Sarah Bird, Rani Borkar, Eric Boyd, Erin Chapple, Ali Ghodsi, and Seth Juarez. There's also a great breakdown of the amazing Microsoft Copilot Studio with Omar Aftab, Gary Pretty, and Kendra Springer, plus exciting sessions from Rajesh Jha, Jared Spataro, Ryan Jones, Zohar Raz, and many more.     Blog Announcements Microsoft Copilot presents an opportunity to reimagine the way we work—turning natural language into the most powerful productivity tool on the planet. With AI, organizations can unearth value in data across productivity tools like business applications and Microsoft 365. Click the link below to find out more.     Check out the latest features in Microsoft Power Apps that will help developers create AI-infused apps faster, give administrators more control over managing thousands of Microsoft Power Platform makers at scale, and deliver better experiences to users around the world. Click the image below to find out more.     Click below to discover new ways to orchestrate business processes across your organization with Copilot in Power Automate. With its user-friendly interface that offers hundreds of prebuilt drag-and-drop actions, more customers have been able to benefit from the power of automation.     Discover how Microsoft Power Platform and Microsoft Dataverse are activating the strength of your enterprise data using AI, the announcement of “plugins for Microsoft Copilot for Microsoft 365”, plus two new Power Apps creator experiences using Excel and natural language.       Click below to find out more about the general availability of Microsoft Fabric and the public preview of Copilot in Microsoft Fabric. With the launch of these next-generation analytics tools, you can empower your data teams to easily scale the demand on your growing business.     And for the rest of all the good stuff, click the link below to visit the Microsoft Ignite 2023 "Book of News", with over ONE HUNDRED announcements across infrastructure, data, security, new tools, AI, and everything else in-between!        

Back to Basics Tuesday Tip #9: All About the Galleries

This is the ninth post in our series dedicated to helping the amazing members of our community--both new members and seasoned veterans--learn and grow in how to best engage in the community! Each Tuesday, we feature new content that will help you best understand the community--from ranking and badges to profile avatars, from Super Users to blogging in the community. Our hope is that this information will help each of our community members grow in their experience with Power Platform, with the community, and with each other!     Today's Tip: All About the Galleries Have you checked out the library of content in our galleries? Whether you're looking for the latest info on an upcoming event, a helpful webinar, or tips and tricks from some of our most experienced community members, our galleries are full of the latest and greatest video content for the Power Platform communities.   There are several different galleries in each community, but we recommend checking these out first:   Community Connections & How-To Videos Hosted by members of the Power Platform Community Engagement  Team and featuring community members from around the world, these helpful videos are a great way to "kick the tires" of Power Platform and find out more about your fellow community members! Check them out in Power Apps, Power Automate, Power Pages, and Copilot Studio!         Webinars & Video Gallery Each community has its own unique webinars and videos highlighting some of the great work being done across the Power Platform. Watch tutorials and demos by Microsoft staff, partners, and community gurus! Check them out: Power Apps Webinars & Video Gallery Power Automate Webinars & Video Gallery Power Pages Webinars & Video Gallery Copilot Studio Webinars & Video Gallery   Events Whether it's the excitement of the Microsoft Power Platform Conference, a local event near you, or one of the many other in-person and virtual connection opportunities around the world, this is the place to find out more about all the Power Platform-centered events. Power Apps Events Power Automate Events Power Pages Events Copilot Studio Events   Unique Galleries to Each Community Because each area of Power Platform has its own unique features and benefits, there are areas of the galleries dedicated specifically to videos about that product. Whether it's Power Apps samples from the community or the Power Automate Cookbook highlighting unique flows, the Bot Sharing Gallery in Copilot Studio or Front-End Code Samples in Power Pages, there's a gallery for you!   Check out each community's gallery today! Power Apps Gallery Power Automate Gallery Power Pages Gallery Copilot Studio Gallery

Users online (2,058)