cancel
Showing results for 
Search instead for 
Did you mean: 
Reply
PowerGirl
Resolver I
Resolver I

In a collection, how to create a column where the values should be: multiply a percentage in this item by a the number in the same column but from the item before.

Hello everyone! I really, really need your help.

 

I need to calculate the total annual spend and the net present value for different projects. For that I have the following information in a table (sample info): 

 
 
 

Annual average volume   4000

Program life time in years    8

Cost reductions    3% in 3 years 2% in 2 years

Piece price 1.50 

 

The Rate% for the Present value calculation will be given in an input field in the app

 

I attached the table I need to create/simulate to be able to perform these calculations in excel. The explanation is as follows:

1. First I need to create a table with number of items from 0 to program life time in years . I store an index in the first column. 

2. For column 2 I need to transform the text in the column "Cost reductions" to a column stating the year 0 no cost  reductions, the next three years a reduction of 3% and the next 2 years a reduction of 2%

3. For column 3 I need to calculate the piece price for each year =Piece price of the previous year * (1-cost reduction of this year) (for the year 0 the piece price will be the one given in the item)

4. For the Total Spend column I need to multiply the calculated piece price of this year * annual average volume. The sum of this column will give me the Total Annual spend that I am looking for.

5. For the Present Value column I need to divide the total spend / (1-rate%)^ThisItem.year (the first column). The sum of this column will give me the Present Value

 

Until now I have created a collection as follows:

 

ForAll(Sequence(Value(Last(FirstN(Split(ThisItem.CostReduction, " "),3)).Result),1),Collect(Reduction1,{ReducPercentage:Last(FirstN(Split(ThisItem.CostReduction, " "),1)).Result,AnnualVol:LookUp(QBOM,QBOMIDinQBOM=ThisItem.QBOMIDinCBD1).TotalAnnualAvgCmpVolume,Index:CountRows(Reduction1)+1,PiecePrice:Left(Label64_1.Text,Find(" ",Label64_1.Text)),Spend:0}));
ForAll(Sequence(Value(Last(FirstN(Split(ThisItem.CostReduction, " "),7)).Result),1),Collect(Reduction2,{ReducPercentage:Last(FirstN(Split(ThisItem.CostReduction, " "),5)).Result,AnnualVol:LookUp(QBOM,QBOMIDinQBOM=ThisItem.QBOMIDinCBD1).TotalAnnualAvgCmpVolume,Index:CountRows(Reduction2)+CountRows(Reduction1)+1,PiecePrice:Left(Label64_1.Text,Find(" ",Label64_1.Text)),Spend:0}));
ForAll(Sequence(Value(Last(FirstN(Split(ThisItem.CostReduction, " "),11)).Result),1),Collect(Reduction3,{ReducPercentage:Last(FirstN(Split(ThisItem.CostReduction, " "),9)).Result,AnnualVol:LookUp(QBOM,QBOMIDinQBOM=ThisItem.QBOMIDinCBD1).TotalAnnualAvgCmpVolume,Index:CountRows(Reduction3)+CountRows(Reduction2)+CountRows(Reduction1)+1,PiecePrice:Left(Label64_1.Text,Find(" ",Label64_1.Text)),Spend:0}));
ForAll(Sequence(Value(Last(FirstN(Split(ThisItem.CostReduction, " "),15)).Result),1),Collect(Reduction4,{ReducPercentage:Last(FirstN(Split(ThisItem.CostReduction, " "),13)).Result,AnnualVol:LookUp(QBOM,QBOMIDinQBOM=ThisItem.QBOMIDinCBD1).TotalAnnualAvgCmpVolume,Index:CountRows(Reduction4)+CountRows(Reduction3)+CountRows(Reduction2)+CountRows(Reduction1)+1,PiecePrice:Left(Label64_1.Text,Find(" ",Label64_1.Text)),Spend:0}));
ClearCollect(Reduction,Reduction1,Reduction2,Reduction3,Reduction4); Clear(Reduction1);Clear(Reduction2);Clear(Reduction3);Clear(Reduction4);

 

as you can see the Piece Price the annual spend are not yet calculated. 

 

My questions:

Is there a better way to get the cost reductions into the collection (maybe dynamically)?

How can I create the column piece price? (I have tried with For All, Sequence, Patch, ThisRecord.Index-1 but I can not find the right combination and I can not patch in the same source as the for all) 

Is there a way to make a For All inside of a For All to make the calculation of the Total Annual Spend and the Present Value without creating a collection or how would you recommend me to do these calculations? 

 

Every help is welcome!

25 REPLIES 25
RandyHayes
Super User
Super User

@PowerGirl 

Actually, I pretty much understood where you were trying to get to.  @poweractivate there was an example shown in the first post that provides a clear enough example.  The only reasons for my questioning was that where @PowerGirl was on the particular problem being experienced was that it was FAR from the actual results expected.  In the first posting it was how to create a table on the given data.  That is simple enough, the challenge is that there are other mitigating aspects of the scenario that would apply to the overall solution (i.e. the Cost Reduction string).

Anyway, @PowerGirl I have this on my schedule to give you a good working solution.  It is not a trivial problem to solve as you have several factors in your example that I saw none of it being accounted for in your original formula.  Things like the fact that this a compounded amortization calculation with variable period rates.  Again, not a trivial formula.

I've been a little busy the past several days, so I will most certainly circle back on this and provided you something that you do not need to embed PowerBI or alter your datasource.

 

_____________________________________________________________________________________
Digging it? - Click on the Thumbs Up below. Solved your problem? - Click on Accept as Solution below. Others seeking the same answers will be happy you did.
NOTE: My normal response times will be Mon to Fri from 1 PM to 10 PM UTC (and lots of other times too!)
Check out my PowerApps Videos too! And, follow me on Twitter @RandyHayes

Really want to show your appreciation? Buy Me A Cup Of Coffee!

Thank you @RandyHayes , I am looking forward to your proposed solution. Like you mention, it is not a trivial formula. 

RandyHayes
Super User
Super User

@PowerGirl 

Me too! 😉  Actually, I have the formula worked out except for the final amortization value.  Didn't get as much time to review it that I thought today.  I will get that last value working and post a formula for you tomorrow.

_____________________________________________________________________________________
Digging it? - Click on the Thumbs Up below. Solved your problem? - Click on Accept as Solution below. Others seeking the same answers will be happy you did.
NOTE: My normal response times will be Mon to Fri from 1 PM to 10 PM UTC (and lots of other times too!)
Check out my PowerApps Videos too! And, follow me on Twitter @RandyHayes

Really want to show your appreciation? Buy Me A Cup Of Coffee!
RandyHayes
Super User
Super User

@PowerGirl 

Okay...I got a chance to go over this some more.  

So, it's a relatively complex formula as you have multiple aspects of variation going on why calculating on each.

 

In my sample setup, I have 5 TextInput controls.  One for the Annual Volume, one for the Program Years, one for the Cost Reduction formula, one for the Piece Price and one for the Rate.

Unfortunately, doing all of this without a collection is not possible (as I had hoped we could eliminate) because we (during the calculation) need to refer back to a prior value while at the same time generating a new prior value.  The only way I know to do this is with the collection as you can add a record and refer (Lookup) at the same time on the same collection.

 

I have the formula below on a Button and then have Two labels on my sample setup.

One label has a Text property of : finalAmortResult.AnnualSpendTotal

and One has a Text property of :  finalAmortResult.AnnualSpendAmortization

 

I did not do any rounding on the final numbers because I found that your example table did calculations on NON-Rounded numbers and that was significant.  

When the final numbers are rounded, they are off by $0.01.  Since I don't know the original formulas you had in your spreadsheet, I would assume there was something significant there for rounding. 

 

Based on the sample you provided, the formula returns the exact numbers you highlighted as what you need.  The formula is flexible to allow for expansion of the Cost Reduction formula as we mentioned in prior posts - as long as they observe the <percentage> in <X Years> format.

 

And...here is the formula.  I commented most of it as you might not be familiar with all of the aspects of it.

Clear(colAmort);

// At the Outer Level we are defining scope variables for input the the formula.  The controls in this With should be changed to reflect controls in the app
With({_CostReductionString: txtCostReduction.Text,
      _years: Value(txtYearsInSchedule.Text),
      _piecePrice: Value(txtPiecePrice.Text),
      _pieceQuantity: Value(txtPieceAmount.Text),
      _annualSpend: 1+(Value(txtAnnualSpend.Text)/100)},
    // First outer level in With - define a table of periods, there will be one record for each rate change and this scope variable will serve as the primary table for the final calculation
    With({_periods: 
        // In this With (2nd outer level) - define the series for each rate change period.  This will define the starting values, percentage rates, and start and end 
        With({series:
            // Perform a regular expression on the cost reduction series and gather up to 4 years of percentage rates 
            // (note: regex can be expanded for more years as needed)
            // all of the Match information will be in _cr table
            With({_cr:Match(_CostReductionString,  
                  "^(?:(?<p1>\d+)%)?\D*(?:(?<years1>\d+))?\D*(?:(?<p2>\d+)%)?\D*(?:(?<years2>\d+))?\D*(?:(?<p3>\d+)%)?\D*(?:(?<years3>\d+))?\D*(?:(?<p4>\d+)%)?\D*(?:(?<years4>\d+))?")},
                // Create a table of records with information from the matches.  
                // Each record will have the Period sequential value, the Sequence Number, the percent from the cost reduction string and the years from the string.
                // Filter out empty years
                Filter(
                    // note: Sequence - half of the count of matches (as each has a percent and a year(s)), start at 1, skip every other number
                    ForAll(Sequence(CountRows(_cr.SubMatches)/2, 1, 2),
                        If(!IsBlank(Last(FirstN(_cr.SubMatches, Value)).Value),
                            {Period: Value,
                             Seq: (Value+1)/2,
                             Percent: Value(Last(FirstN(_cr.SubMatches, Value)).Value),
                             years: Value(Last(FirstN(_cr.SubMatches, Value+1)).Value)
                            }
                        )
                    ),
                    years>0
                )
           )},

            // Create the series table.
            AddColumns(
                // create table from the sequence of all the series items (from the _cr).  
                // Adding two records to the series - one for starting period and one for ending period.  
                // It is assumed that year 0 is always the starting year with NO percentage change.
                // Start sequence at zero for year zero
                ForAll(Sequence(CountRows(series)+2,0),
                    // define a series year scope variable to calculate the starting year of the period
                    // get the sum of the prior period years and subtract out the years for the current period (add one to set bound)
                    With({sy:Sum(Filter(series, Seq<=Value), years) - Sum(Filter(series, Seq=Value), years)+1},
                       // Create record with sequential period number, start and end year of period, percent rate during period and starting Value (only for year 0)
                       {period:Value, 
                        start: If(Value=0, 0, sy), 
                        end: If(Value=0, 0, If(Value>Last(series).Seq, _years,  sy + LookUp(series, Seq=Value, years)-1)), 
                        pcnt: 1-(Coalesce(LookUp(series, Seq=Value, Percent),0)/100),
                        startValue: If(Value=0, _pieceQuantity * _piecePrice, 0),
                        amortRate: If(Value=0, 1, _annualSpend)
                       }
                    )
                ),
                // add a span helper column
                "Span", end-start+1
            )
        )},  //end of _period definition


        // throw away loop - loop through all the _periods in sequence. 
        ForAll(Sequence(CountRows(_periods)),
            // Grab the period record that corresponds to the current sequence
            With({_periodRec: Last(FirstN(_periods, Value))},
                // Grab the prior sequence value from the prior record of the collection colAmort we are building.
                // If we are at 0 (the year that holds the starting value) use that startValue from the current period record (it will be year 0)
                With({_priorValue: If(_periodRec.startValue=0, Last(FirstN(colAmort, CountRows(colAmort))).EndValue, _periodRec.startValue)},
                    // Preform the calculations on each item in the sequence for the amounts
                    With({_spanCalculations: ForAll(Sequence(_periodRec.Span), {seq:Value, amt:_priorValue * (_periodRec.pcnt^Value)})},
                        // Collect a new record with the main calculations
                        Collect(colAmort,
                            {   
                            // Total value for the entire period
                            // Sum all of the amortized values for each year in the current period based on the period percentage and the opening value
                            // Amortization formula is : value * (percentage ^ YearNumber)
                            PeriodTotal: Sum(_spanCalculations, amt), // Value),
                            // Calculate the ending amortized value (used for the next period)
                            EndValue: _priorValue * (_periodRec.pcnt^_periodRec.Span),
                            // Calculate the amortized values based on the period amounts, adjusting for the year in the span
                            AmortTotal: Sum(ForAll(_spanCalculations, amt / (_periodRec.amortRate ^ (seq + _periodRec.start - 1) )), Value)
                            }
                        )
                    )
                )
            )
        )    
    );

);

    // For convienience - a final record:
    Set(
    finalAmortResult, 
        {AnnualSpendTotal: Sum(colAmort, PeriodTotal),
         AnnualSpendAmortization: Sum(colAmort, AmortTotal)
        }
    )

 

I hope this is helpful for you.  Enjoy!!

 

_____________________________________________________________________________________
Digging it? - Click on the Thumbs Up below. Solved your problem? - Click on Accept as Solution below. Others seeking the same answers will be happy you did.
NOTE: My normal response times will be Mon to Fri from 1 PM to 10 PM UTC (and lots of other times too!)
Check out my PowerApps Videos too! And, follow me on Twitter @RandyHayes

Really want to show your appreciation? Buy Me A Cup Of Coffee!

Wow, thank you very much for your time and for the formula. I will try it and let you know my questions/results.

@RandyHayes 

I think I have easier questions this time. I tried your amazing formula and here are my questions:

1. I have evaluated 5 examples in the app with your formula and in the excel worksheet and I get all the same results except for example 2 (please see attachment). Might it be because the first 3 years are 0% reduction? I can not find the reason.

2. I want to compare the resulting Annual Spend Total and Annual Spend Amortization of different items in a gallery. Should I add this formula in an "add columns" for the collection I created? Or where should I perform this formula for it to calculate and display the values of the selected items? (I added a button in the gallery and two text labels to show the result, but it shows the same result in every item. How can I show the result of each separate item?)

RandyHayes
Super User
Super User

@PowerGirl 

Glad that we're making progress.  

Let me review this.  When I was putting that together I did only have the one sample, so I am anxious to see another and see how it fits.  I'm a little backlogged today, so let me check it over tomorrow.

 

_____________________________________________________________________________________
Digging it? - Click on the Thumbs Up below. Solved your problem? - Click on Accept as Solution below. Others seeking the same answers will be happy you did.
NOTE: My normal response times will be Mon to Fri from 1 PM to 10 PM UTC (and lots of other times too!)
Check out my PowerApps Videos too! And, follow me on Twitter @RandyHayes

Really want to show your appreciation? Buy Me A Cup Of Coffee!
RandyHayes
Super User
Super User

@PowerGirl 

Sorry to take so long...trying to work through the backlog.

 

Do you happen to have the full spreadsheet view of the ones that do not match (like you had in the first example)?

I have looked through the calculations in the app formula and they look fine based on my understanding of the formulas in the Excel.  So...that means I must have inferred the wrong formula from the Excel.  If you have something like that, I believe that would help a lot.

_____________________________________________________________________________________
Digging it? - Click on the Thumbs Up below. Solved your problem? - Click on Accept as Solution below. Others seeking the same answers will be happy you did.
NOTE: My normal response times will be Mon to Fri from 1 PM to 10 PM UTC (and lots of other times too!)
Check out my PowerApps Videos too! And, follow me on Twitter @RandyHayes

Really want to show your appreciation? Buy Me A Cup Of Coffee!

@RandyHayes 

no problem, I appreciate your help. Please find attached the full spreadsheet view of the example 2. I believe it could be on the first 3 years 0% discount (that in reality they are 4 because the  year 0 is never considered) or maybe the program life time in years?

RandyHayes
Super User
Super User

@PowerGirl 

So I think there is an issue in your spreadsheet.  You show the the year 0 Annual spend as 918948.16.  From what I see in the column name, the annual spend is the year piece price multiplied by the annual volume.

You show 918948.16.  However 53558 * 17.16 = 919055.28

Is there a calculation that I am missing or is this a mistake in the spreadsheet?

_____________________________________________________________________________________
Digging it? - Click on the Thumbs Up below. Solved your problem? - Click on Accept as Solution below. Others seeking the same answers will be happy you did.
NOTE: My normal response times will be Mon to Fri from 1 PM to 10 PM UTC (and lots of other times too!)
Check out my PowerApps Videos too! And, follow me on Twitter @RandyHayes

Really want to show your appreciation? Buy Me A Cup Of Coffee!

Helpful resources

Announcements

Tuesday Tip | How to Get Community Support

It's time for another Tuesday Tip, 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.       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.   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. 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   Community Support Form If you need more assistance, you can reach out to the Community Team via the Community support form. Choose the type of support you require and fill in the form accordingly. We will respond to you promptly.    Thank you for being an active part of our community. Your contributions make a difference!   Best Regards, The Community Management Team

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  

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