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

Tuesday Tip | How to Provide Feedback

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 are always looking to improve your experience on our community platform, and your feedback is invaluable to us. Whether it's a suggestion for a new feature, an idea to enhance the platform, or a concern you'd like to address, we want to hear from you!   How to Share Your Feedback: Each of our communities has its own Feedback forum where the Community Managers can assist you directly in.  ●  Power Apps  ● Power Automate   ● Power Pages   ● Copilot Studio   We also have many articles on community account FAQs, or how to navigate the community, which can be found below.   Community Accounts & Registration:  https://powerusers.microsoft.com/t5/Community-Accounts-Registration/tkb-p/pa_community_accounts_regi...   Using the Community: https://powerusers.microsoft.com/t5/Using-the-Community/tkb-p/pa_using_the_community   Our Commitment to You: We are committed to creating a collaborative and supportive environment. All feedback is reviewed by our community managers, and we strive to implement changes that will benefit all members.   Thank you for being a part of our community. Your contributions help us grow and improve together!

Copilot Cookbook Challenge | Win Tickets to the Power Platform Conference

We are excited to announce the "The Copilot Cookbook Community Challenge is a great way to showcase your creativity and connect with others. Plus, you could win tickets to the Power Platform Community Conference in Las Vegas in September 2024 as an amazing bonus.   Two ways to enter: 1. Copilot Studio: https://aka.ms/CS_Copilot_Cookbook_Challenge 2. Power Apps Copilot Cookbook Gallery: https://aka.ms/PA_Copilot_Cookbook_Challenge   There will be 5 chances to qualify for the final drawing: Early Bird Entries: March 1 - June 2Week 1: June 3 - June 9Week 2: June 10 - June 16Week 3: June 17 - June 23Week 4: June 24 - June 30     At the end of each week, we will draw 5 random names from every user who has posted a qualifying Copilot Studio template, sample or demo in the Copilot Studio Cookbook or a qualifying Power Apps Copilot sample or demo in the Power Apps Copilot Cookbook. Users who are not drawn in a given week will be added to the pool for the next week. Users can qualify more than once, but no more than once per week. Four winners will be drawn at random from the total qualifying entrants. If a winner declines, we will draw again at random for the next winner.  A user will only be able to win once. If they are drawn multiple times, another user will be drawn at random. Prizes:  One Pass to the Power Platform Conference in Las Vegas, Sep. 18-20, 2024 ($1800 value, does not include travel, lodging, or any other expenses) Winners are also eligible to do a 10-minute presentation of their demo or solution in a community solutions showcase at the event. To qualify for the drawing, templates, samples or demos must be related to Copilot Studio or a Copilot feature of Power Apps, Power Automate, or Power Pages, and must demonstrate or solve a complete unique and useful business or technical problem. Power Automate and Power Pagers posts should be added to the Power Apps Cookbook. Final determination of qualifying entries is at the sole discretion of Microsoft. Weekly updates and the Final random winners will be posted in the News & Announcements section in the communities on July 29th, 2024. Did you submit entries early?  Early Bird Entries March 1 - June 2:  If you posted something in the "early bird" time frame complete this form: https://aka.ms/Copilot_Challenge_EarlyBirds if you would like to be entered in the challenge.

May 2024 Community Newsletter

It's time for the May 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 PagesWarrenBelzcreativeopinionExpiscornovusFubarAmikNived_NambiarPstork1OliverRodriguesmmbr1606ManishSolankiMattJimisonragavanrajantimlSudeepGhatakNZrenatoromaoLucas001iAm_ManCatAlexEncodianfernandosilvaOOlashynJmanriqueriosChriddle  BCBuizerExpiscornovus  a33ikBCBuizer  SebSDavid_MA  dpoggermannPstork1     LATEST NEWS   We saw a whole host of amazing announcements at this year's #MSBuild, so we thought we'd share with you a bite sized breakdown of the big news via blogs from Charles Lamanna, Sangya Singh, Ryan Cunningham, Kim Manis, Nirav Shah, Omar Aftab, and ✊🏾Justin Graham :   New ways of development with copilots and Microsoft Power PlatformRevolutionize the way you work with Automation and AIPower Apps is making it easier for developers to build with Microsoft Copilot and each otherCopilot in Microsoft Fabric is now generally available in Power BIUnlock new levels of productivity with Microsoft Dataverse and Microsoft Copilot StudioMicrosoft Copilot Studio: Building copilots with agent capabilitiesMicrosoft Power Pages is bringing the new standard in secure, AI-powered capabilities   If you'd like to relive some of the highlights from Microsoft Build 2024, click the image below to watch a great selection of on-demand Keynotes and sessions!         WorkLab Podcast with Charles Lamanna   Check out the latest episode of the WorkLab podcast with CVP of Business Apps and Platforms at Microsoft, Charles Lamanna, as he explains the ever-expanding evolution of Copilot, and how AI is offering new opportunities for business leaders. Grab yourself a coffee and click the image below to take a listen.       Event Recap: European Collaboration and Cloud Summits 2024   Click the image below to read a great recap by Mark Kashman about the recent European Collaboration Summit and European Cloud Summit held in Germany during May 2024. Great work everybody!       UPCOMING EVENTS European Power Platform Conference - SOLD OUT! Congrats to everyone who managed to grab a ticket for the now SOLD OUT European Power Platform Conference, which takes place in beautiful Brussels, Belgium, on 11-13th June. With a great keynote planned from Ryan Cunningham and Sangya Singh, plus expert sessions from 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, Lindsay Shelton, Mats Necker, Negar Shahbaz, Nick Doelman, Paulien Buskens, Sara Lagerquist, Tricia Sinclair, Ulrikke Akerbæk, and many more, it looks like the E in #EPPC24 stands for Epic!   Click the image below for a full run down of the exciting sessions planned, and remember, you'll need to move quickly for tickets to next year's event!       AI Community Conference - New York - Friday 21st June Check out the AI Community Conference, which takes place at the Microsoft Corporate building on Friday 21st June at 11 Times Square in New York City. Here, you'll have the opportunity to explore the latest trends and breakthroughs in AI technology alongside fellow enthusiasts and experts, with speakers on the day including Arik Kalininsky, Sherry Xu, Xinran Ma, Jared Matfess, Mihail Mateev, Andrei Khaidarov, Ruven Gotz, Nick Brattoli, Amit Vasu, and more. So, whether you're a seasoned professional or just beginning your journey into AI, click the image below to find out more about this exciting NYC event.       TechCon365 & Power Platform Conference - D.C. - August 12-16th ** EARLY BIRD TICKETS END MAY 31ST! ** Today's the perfect time to grab those early bird tickets for the D.C. TechCon365 & PWRCON Conference at the Walter E Washington Center on August 12-16th! Featuring the likes of Tamara Bredemus, Sunny Eltepu, Lindsay Shelton, Brian Alderman, Daniel Glenn, Julie Turner, Jim Novak, Laura Rogers, Microsoft MVP, John White, Jason Himmelstein, Luc Labelle, Emily Mancini, MVP, UXMC, Fabian Williams, Emma Wiehe, Amarender Peddamalku, and many more, this is the perfect event for those that want to gain invaluable insights from industry experts. Click the image below to grab your tickets today!         Power Platform Community Conference - Sept. 18-20th 2024 Check out some of the sessions already planned for the Power Platform Community Conference in Las Vegas this September. Holding all the aces we have Kristine Kolodziejski, Lisa Crosbie, Daniel Christian, Dian Taylor, Scott Durow🌈, David Yack, Michael O. and Aiden Kaskela, who will be joining the #MicrosoftCommunity for a series of high-stakes sessions! Click the image below to find out more as we go ALL-IN at #PPCC24!       For more events, click the image below to visit the Community Days website.                                            

Celebrating the May Super User of the Month: Laurens Martens

  @LaurensM  is an exceptional contributor to the Power Platform Community. Super Users like Laurens inspire others through their example, encouragement, and active participation. We are excited to celebrated Laurens as our Super User of the Month for May 2024.   Consistent Engagement:  He consistently engages with the community by answering forum questions, sharing insights, and providing solutions. Laurens dedication helps other users find answers and overcome challenges.   Community Expertise: As a Super User, Laurens plays a crucial role in maintaining a knowledge sharing environment. Always ensuring a positive experience for everyone.   Leadership: He shares valuable insights on community growth, engagement, and future trends. Their contributions help shape the Power Platform Community.   Congratulations, Laurens Martens, for your outstanding work! Keep inspiring others and making a difference in the community!   Keep up the fantastic work!        

Check out the Copilot Studio Cookbook today!

We are excited to announce our new Copilot Cookbook Gallery in the Copilot Studio Community. We can't wait for you to share your expertise and your experience!    Join us for an amazing opportunity where you'll be one of the first to contribute to the Copilot Cookbook—your ultimate guide to mastering Microsoft Copilot. Whether you're seeking inspiration or grappling with a challenge while crafting apps, you probably already know that Copilot Cookbook is your reliable assistant, offering a wealth of tips and tricks at your fingertips--and we want you to add your expertise. What can you "cook" up?   Click this link to get started: https://aka.ms/CS_Copilot_Cookbook_Gallery   Don't miss out on this exclusive opportunity to be one of the first in the Community to share your app creation journey with Copilot. We'll be announcing a Cookbook Challenge very soon and want to make sure you one of the first "cooks" in the kitchen.   Don't miss your moment--start submitting in the Copilot Cookbook Gallery today!     Thank you,  Engagement Team

Announcing Power Apps Copilot Cookbook Gallery

We are excited to share that the all-new Copilot Cookbook Gallery for Power Apps is now available in the Power Apps Community, full of tips and tricks on how to best use Microsoft Copilot as you develop and create in Power Apps. The new Copilot Cookbook is your go-to resource when you need inspiration--or when you're stuck--and aren't sure how to best partner with Copilot while creating apps.   Whether you're looking for the best prompts or just want to know about responsible AI use, visit Copilot Cookbook for regular updates you can rely on--while also serving up some of your greatest tips and tricks for the Community. Check Out the new Copilot Cookbook for Power Apps today: Copilot Cookbook - Power Platform Community.  We can't wait to see what you "cook" up!      

Top Solution Authors
Top Kudoed Authors
Users online (4,596)