cancel
Showing results for 
Search instead for 
Did you mean: 
Reply
Anonymous
Not applicable

submitting 2 forms if total hours = over 8.

Hello!

I am having a ticket system where workers can clock-in during their worktime. The app looks like this: https://gyazo.com/c8761eaa962db09ceb8dff502ba24321


Database looks like this:
https://gyazo.com/bccfff0f750091f347877325f6d67d82
Whenever the column tijdtotaal of the day they are wanting to fill in a ticket, is higher than 8, I want it to make a new ticket with the rest of the hours. 

This is what we need to do: 

-Everytime a new ticket gets created, we need to filter the database on the date of today and see how many rows are there. It then needs to check if TijdTotaal is over 8. When it is over 8, I want it to match up exactly to 8. This may be confusing so I will explain it with a screenshot.

How it is now: https://gyazo.com/b979d3d96597e7eeb8a351dfd4b8a433
How it should look like: https://gyazo.com/f256e7f855acaf9419592bae5bbbe3ff

It needs to calculate it to 8 and use the rest of the time to make a new ticket with the same information as the last ticket. How can we get this?

Just using this code to send the form away: SubmitForm(EditForm1)



I hope I have explained this well enough, if I didn't, let me know and I will try and explain it better. 

18 REPLIES 18
Mr-Dang-MSFT
Power Apps
Power Apps

Hi @Anonymous,

If I understand correctly:

  • You are keeping track of time in a SharePoint list.
  • When tijd totaal exceeds 8 hours, you want to enter a record that contains the difference between tijd totaal and 8 hours.
  • Then you create an additional record for the amount of tijd totaal above 8 using the same details.

 

The steps to solving this might look like this:

  1. Get the records for the day. Hold this in a collection so that you can make calculations with its data (colUrenRegistratie in the formula below).
  2. Calculate a sum of tijd totaal for the day. We will use this to determine how many hours to record.
  3. Use Mod() to calculate the remainder if you divide the sum of tijd totaal by 8. If the remainder is 0, assume it is 8 instead. Using a remainder will help the solution scale so that you can adjust for every multiple of 8 hours: 8, 16, 24...
  4. Use a condition to compare the remainder with the tijd totaal that the user submits.
    • If the submission of tijd totaal is less than or equal to the remainder, use SubmitForm only. This is the formula you already have.
    • If the submission of tijd totaal is greater than then remainder:
      • Use a condition to check if the form entry is valid. If it is, proceed to the next step. If the entry is not valid, show an error to the user. This step is needed since Patch() does not use the error handling that the Form control has.
      • Use a Patch() statement to create a record submitting the remainer as tijd totaal.
      • Use a second Patch() statement to create a record submitting the difference between the tijd totaal and the remainder.
      • Show an error if there are any errors during Patch.
  5. If successful, reset the form and navigate. The same formula needs to be in EditForm1's OnSuccess property.

 

The button that you use for submitting the form might contain a formula like this in the OnSelect property:

// Get the records for today.
// Revise the filter with the conditions you need.
ClearCollect(colUrenRegistratie,Filter(UrenRegistratie,...));

With(
    {
        // Calculate a sum of the tijd totaal for today.
        sumTijdTotaal: Sum(colUrenRegistratie,TijdTotaal)
    },
    With(
        {
            // Calculate a remainder of the tijd totaal if you divide its sum by 8.
            // If the remainder is 0, then make it 8.
            remainder: If(Mod(sumTijdTotaal,8)=0,8,Mod(sumTijdTotaal,8))
        },
        If(
            // Check if one or more records needs to be created.
            EditForm1.Updates.TijdTotaal<=8,

            // CASE: The tijd totaal is less than or equal to 8 and only one record needs to be created.
            SubmitForm(EditForm1),

            // CASE: The tijd totaal exceeds the remainder and multiple records need to be created.
            If(
                // Check if the entry in the form is valid.
                !EditForm1.Valid,
                
                // ERROR: Show an error if the form was not entered correctly.
                Notify("One or more fields in the form were not entered correctly.",NotificationType.Error),

                // Create a record submitting hours equal to the remainder.
                Patch(UrenRegistratie,EditForm1.Updates,{TijdTotaal: remainder});

                // Create a second record submitting hours equal to the difference between the entered tijd totaal and the remainder.
                Patch(UrenRegistratie,EditForm1.Updates,{TijdTotaal: EditForm1.Updates.TijdTotaal-remainder});

                If(
                    // Check for any errors in patching.
                    !IsEmpty(Errors(UrenRegistratie)),

                    // ERROR: Show an error if the data source had errors during the Patch.
                    Notify("There was an error submitting the form and records may not have been submitted successfully.",NotificationType.Error),;

                    // Reset the form and navigate away upon success.
                    // Place these same actions in the OnSuccess property of EditForm1.
                    ResetForm(EditForm1);
                    Navigate(Screen1,Fade)
                )
            )
        )
    )
)

 

Let me know which parts need clarification.

Anonymous
Not applicable

Hello @Mr-Dang-MSFT 

At first I want to thank you for your answer. I'm just a little bit confused about some parts. 

 

I need to put the code on the editform succes & on the onselect of the button? @Mr-Dang-MSFT 

 

I get this error (I didn't put the code on the editform succes yet): https://gyazo.com/7f6fd2bea04b47879074fe1cce1224e4


Don't I need to add newform(editform1) somewhere?

Currently this is the code: 

 

 

 

// Get the records for today.
// Revise the filter with the conditions you need.
ClearCollect(colUrenRegistratie, Filter(
        UrenRegistratie,
        Datum = Text(
            Today (),
            "dd/mm/yyyyy"
        ) And varcurrentuser = Werknemer
    ));

With(
    {
        // Calculate a sum of the tijd totaal for today.
        sumTijdTotaal: Sum(colUrenRegistratie,TijdTotaal)
    },
    With(
        {
            // Calculate a remainder of the tijd totaal if you divide its sum by 8.
            // If the remainder is 0, then make it 8.
            remainder: If(Mod(sumTijdTotaal,8)=0,8,Mod(sumTijdTotaal,8))
        },
        If(
            // Check if one or more records needs to be created.
            EditForm1.Updates.TijdTotaal<=8,

            // CASE: The tijd totaal is less than or equal to 8 and only one record needs to be created.
            SubmitForm(EditForm1),

            // CASE: The tijd totaal exceeds the remainder and multiple records need to be created.
            If(
                // Check if the entry in the form is valid.
                !EditForm1.Valid,
                
                // ERROR: Show an error if the form was not entered correctly.
                Notify("One or more fields in the form were not entered correctly.",NotificationType.Error),

                // Create a record submitting hours equal to the remainder.
                Patch(UrenRegistratie,EditForm1.Updates,{TijdTotaal: remainder});

                // Create a second record submitting hours equal to the difference between the entered tijd totaal and the remainder.
                Patch(UrenRegistratie,EditForm1.Updates,{TijdTotaal: EditForm1.Updates.TijdTotaal-remainder});

                If(
                    // Check for any errors in patching.
                    !IsEmpty(Errors(UrenRegistratie)),

                    // ERROR: Show an error if the data source had errors during the Patch.
                    Notify("There was an error submitting the form and records may not have been submitted successfully.",NotificationType.Error);

                    // Reset the form and navigate away upon success.
                    // Place these same actions in the OnSuccess property of EditForm1.
                    ResetForm(EditForm1);
                    Navigate([@Overzicht],Fade)
                )
            )
        )
    )
)

 

 

 

 

Hi @Anonymous ,

We wrote these errors ourselves using the Notify() function. So since you received that error message, it means:

  • The tijd totaal exceeded 8 hours.
  • The entry in the form was valid.
  • One or more of the patch statements we wrote did not work.

I'm thinking the Patch() might work better if we include Defaults(UrenRegistratie) as the second argument.

  • This provides the patch with a full blank record; EditForm1.Updates includes a record from what is entered into the form; and the {TijdTotaal: ___} replaces the intended value for tijd totaal from the form.
  • Patch() smashes all those records together with any duplicate columns with a value equal to the last one listed.
  • It would look something like this:
// Create a record submitting hours equal to the remainder.
Patch(UrenRegistratie,Defaults(UrenRegistratie),EditForm1.Updates,{TijdTotaal: remainder});

// Create a second record submitting hours equal to the difference between the entered tijd totaal and the remainder.
Patch(UrenRegistratie,Defaults(UrenRegistratie),EditForm1.Updates,{TijdTotaal: EditForm1.Updates.TijdTotaal-remainder});

 

If that does not work, can you insert a temporary button with just the patch statements, fill in a new form with a tijd totaal > 8 hours, click the temporary button, and see what error happens?

Anonymous
Not applicable

So basically I have changed the code like you told me to, looks like this now: 

// Get the records for today.
// Revise the filter with the conditions you need.
ClearCollect(colUrenRegistratie, Filter(
        UrenRegistratie,
        Datum = Text(
            Today (),
            "dd/mm/yyyyy"
        ) And varcurrentuser = Werknemer
    ));

With(
    {
        // Calculate a sum of the tijd totaal for today.
        sumTijdTotaal: Sum(colUrenRegistratie,TijdTotaal)
    },
    With(
        {
            // Calculate a remainder of the tijd totaal if you divide its sum by 8.
            // If the remainder is 0, then make it 8.
            remainder: If(Mod(sumTijdTotaal,8)=0,8,Mod(sumTijdTotaal,8))
        },
        If(
            // Check if one or more records needs to be created.
            EditForm1.Updates.TijdTotaal<=8,

            // CASE: The tijd totaal is less than or equal to 8 and only one record needs to be created.
            SubmitForm(EditForm1),

            // CASE: The tijd totaal exceeds the remainder and multiple records need to be created.
            If(
                // Check if the entry in the form is valid.
                !EditForm1.Valid,
                
                // ERROR: Show an error if the form was not entered correctly.
                Notify("One or more fields in the form were not entered correctly.",NotificationType.Error),

                // Create a record submitting hours equal to the remainder.
Patch(UrenRegistratie,Defaults(UrenRegistratie),EditForm1.Updates,{TijdTotaal: remainder});

// Create a second record submitting hours equal to the difference between the entered tijd totaal and the remainder.
Patch(UrenRegistratie,Defaults(UrenRegistratie),EditForm1.Updates,{TijdTotaal: EditForm1.Updates.TijdTotaal-remainder});

                If(
                    // Check for any errors in patching.
                    !IsEmpty(Errors(UrenRegistratie)),

                    // ERROR: Show an error if the data source had errors during the Patch.
                    Notify("There was an error submitting the form and records may not have been submitted successfully.",NotificationType.Error);

                    // Reset the form and navigate away upon success.
                    // Place these same actions in the OnSuccess property of EditForm1.
                    ResetForm(EditForm1);
                    Navigate([@Overzicht],Fade)
                )
            )
        )
    )
)


I basically changed the 2 patch lines for the new lines of code you sent. This does send the forum to my database, but does not split up the last one. Here is a screenshot: https://gyazo.com/0bd5bb68bcc7725435e77891c4f3f7d1

 

It is supposed to split up last row in 2 rows, since tijdtotaal = higher than 8. Second row should have (8-7) 1 and third should have 5 hours @Mr-Dang-MSFT 

Oops, I did not do the math right on the remainder. I think this should do the trick; revise the calculation at the top with this:

remainder: 8-Mod(sumTijdTotaal,8)

 

So if the sum of existing hours was 7 (or 15 or 23), Mod() will divide that number by 8 as many times as it can and get what is left: 7. Then you subtract that amount from 8 to get how many more hours you can apply until you reach 8: 1.

 

The first Patch statement writes the remainder amount.

The second Patch statement takes the tijd totaal you were trying to write and applies the hours minus the remainder from the first patch.

 

Let me know if I got that right.

Anonymous
Not applicable

This has almost worked! We're getting close! This is what's happening now:

I made ticket with 6 hours, all good.

Made a ticket with 4 hours and 15 minutes (4,25) 

 

Got the error message. When I look in the database, I do see this, a ticket with 2 hours. So that's good. And the other 2,25 hours are just gone now. @Mr-Dang-MSFT 

 

So we just need to other ticket to get created

Database: https://gyazo.com/1b4e633bf0a249d6fd13668e311bcc85

Really appreciate the help! Stay safe!


-----------------------------------------------------------------------
Edit:
-----------------------------------------------------------------------

I tested it again today and I made a ticket of 6 hours and a ticket of 3 hours, and nothing happend. They did not get split up. https://gyazo.com/3608c9c1608e4377fb6e12f3d6e8b68f

What do I have to put on the OnSuccess of the form? (I've put the exact same code in but then it just keeps on loading when I try to send a ticket.

I made a ticket with 10 hours, and it just made it 7 hours and the other hours are gone, no other ticket gets created
----------------------------------------------------------------
When I only put in the button with the 2 patch statements, I get this error, it can't find remainder too. https://gyazo.com/53d2466928afa6c3392a209dbcb86c96

Hi @Anonymous ,

These are some general strategies for seeing where a formula goes wrong for a scenario like this. It looks like the first patch is successful. To test what's going wrong with the second one:

  • Insert a button. In its OnSelect property, use Set() to set multiple variables to the values used in the With() statements provided in previous responses: sumTijdTotaal, remainder.
  • Insert a label on the screen and make it show the values of the variables you made during the step above.
  • Insert a label on the screen to show the value of EditForm1.Updates.TijdTotaal.

Find out which of those numbers is causing the second patch statement to fail.

Anonymous
Not applicable

For the first step, are you able to provide a full code that I can copy paste? @Mr-Dang-MSFT 

 

I do not get any error anymore when I try to run the code. Here is the result, this is not what it is supposed to be doing. This should've been split it as a ticket with 2 hours and 4 hours.

Database image: https://gyazo.com/9db333feaeecd785b786755e21ec804e

I removed all the tickets and made a new ticket with 9 hours. It creates the ticket with 8 hours and I then get this error.  https://gyazo.com/e5db42f51519f9f20456fcd30929cc85

But whenever I make 2 tickets of 6 hours, nothing happends, when it should actually split the second one up to 2 and 4 hours.

So first I added a ticket of 8 hours. Worked good. I then made one with 6 hours, worked good too. I then made one with 9 hours and it did take 2 hours only, but then it doesn't create the new ticket sadly


Now I tried it with doing a ticket of 8 first and then it doesn't work. It does not split up the 2 tickets. https://gyazo.com/72861baf66bee9bed75c963bee3ff361

Currently code: 

ClearCollect(colUrenRegistratie, Filter(
        UrenRegistratie,
        Datum = Text(
            Today (),
            "dd/mm/yyyyy"
        ) And varcurrentuser = Werknemer
    ));

With(
    {
        sumTijdTotaal: Sum(colUrenRegistratie,TijdTotaal)
    },
    With(
        {
            remainder: 8-Mod(sumTijdTotaal,8)
        },
        If(
            EditForm1.Updates.TijdTotaal<=8,
            SubmitForm(EditForm1),
            If( 
                !EditForm1.Valid,
                Notify("One or more fields in the form were not entered correctly.",NotificationType.Error),
                Patch(UrenRegistratie,Defaults(UrenRegistratie),EditForm1.Updates,{TijdTotaal: remainder});
                Patch(UrenRegistratie,Defaults(UrenRegistratie),EditForm1.Updates,{TijdTotaal: EditForm1.Updates.TijdTotaal-remainder});

                If(
                    !IsEmpty(Errors(UrenRegistratie)),

                    Notify("There was an error submitting the form and records may not have been submitted successfully.",NotificationType.Error);
                    ResetForm(EditForm1);
                    Navigate([@Overzicht],Fade)
                )
            )
        )
    )
)
Anonymous
Not applicable

 

Helpful resources

Announcements

Community Roundup: A Look Back at Our Last 10 Tuesday Tips

As we continue to grow and learn together, it's important to reflect on the valuable insights we've shared. For today's #TuesdayTip, we're excited to take a moment to look back at the last 10 tips we've shared in case you missed any or want to revisit them. Thanks for your incredible support for this series--we're so glad it was able to help so many of you navigate your community experience!   Getting Started in the Community An overview of everything you need to know about navigating the community on one page!  Community Links: ○ Power Apps ○ Power Automate  ○ Power Pages  ○ Copilot Studio    Community Ranks and YOU Have you ever wondered how your fellow community members ascend the ranks within our community? We explain everything about ranks and how to achieve points so you can climb up in the rankings! Community Links: ○ Power Apps ○ Power Automate  ○ Power Pages  ○ Copilot Studio    Powering Up Your Community Profile Your Community User Profile is how the Community knows you--so it's essential that it works the way you need it to! From changing your username to updating contact information, this Knowledge Base Article is your best resource for powering up your profile. Community Links: ○ Power Apps ○ Power Automate  ○ Power Pages  ○ Copilot Studio    Community Blogs--A Great Place to Start There's so much you'll discover in the Community Blogs, and we hope you'll check them out today!  Community Links: ○ Power Apps ○ Power Automate  ○ Power Pages  ○ Copilot Studio    Unlocking Community Achievements and Earning Badges Across the Communities, you'll see badges on users profile that recognize and reward their engagement and contributions. Check out some details on Community badges--and find out more in the detailed link at the end of the article! Community Links: ○ Power Apps  ○ Power Automate  ○ Power Pages  ○ Copilot Studio    Blogging in the Community Interested in blogging? Everything you need to know on writing blogs in our four communities! Get started blogging across the Power Platform communities today! Community Links: ○ Power Apps  ○ Power Automate  ○ Power Pages  ○ Copilot Studio   Subscriptions & Notifications We don't want you to miss a thing in the community! Read all about how to subscribe to sections of our forums and how to setup your notifications! Community Links: ○ Power Apps  ○ Power Automate  ○ Power Pages  ○ Copilot Studio   Getting Started with Private Messages & Macros 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! Community Links: ○ Power Apps  ○ Power Automate  ○ Power Pages  ○ Copilot Studio   Community User Groups Learn everything about being part of, starting, or leading a User Group in the Power Platform Community. Community Links: ○ Power Apps  ○ Power Automate  ○ Power Pages  ○ Copilot Studio   Update Your Community Profile Today! Keep your community profile up to date which is essential for staying connected and engaged with the community. Community Links: ○ Power Apps  ○ Power Automate  ○ Power Pages  ○ Copilot Studio   Thank you for being an integral part of our journey.   Here's to many more Tuesday Tips as we pave the way for a brighter, more connected future! As always, watch the News & Announcements for the next set of tips, coming soon!

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

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

April 2024 Community Newsletter

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

Tuesday Tip | Update Your Community Profile Today!

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

Hear what's next for the Power Up Program

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

Tuesday Tip: Community User Groups

It's time for another TUESDAY TIPS, your weekly connection with the most insightful tips and tricks that empower both newcomers and veterans in the Power Platform Community! Every Tuesday, we bring you a curated selection of the finest advice, distilled from the resources and tools in the Community. Whether you’re a seasoned member or just getting started, Tuesday Tips are the perfect compass guiding you across the dynamic landscape of the Power Platform Community.   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!   Today's Tip: Community User Groups and YOU 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.   When you are part of a User Group, you discover amazing connections, learn incredible things, and build your skills. Some User Groups work in the virtual space, but many meet in physical locations, meaning you have several options when it comes to building community with people who are learning and growing together!   Some of the benefits of our Community User Groups are: Network with like-minded peers and product experts, and get in front of potential employers and clients.Learn from industry experts and influencers and make your own solutions more successful.Access exclusive community space, resources, tools, and support from Microsoft.Collaborate on projects, share best practices, and empower each other. These are just a few of the reasons why our community members love their User Groups. Don't wait. Get involved with (or maybe even start) a User Group today--just follow the tips below to get started.For current or new User Group leaders, all the information you need is here: User Group Leader Get Started GuideOnce you've kicked off your User Group, find the resources you need:  Community User Group ExperienceHave questions about our Community User Groups? Let us know! We are here to help you!

Top Solution Authors
Top Kudoed Authors
Users online (5,630)