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: Getting Started with Private Messages & Macros

Welcome to 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!   This Week's Tip: Private Messaging & Macros in Power Apps Community   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!   Our Knowledge Base article about private messaging and macros is the best place to find out more. Check it out today and discover some key tips and tricks when it comes to messages and macros:   Private Messaging: Learn how to enable private messages in your community profile and ensure you’re connected with other community membersMacros Explained: Discover the convenience of macros—prewritten text snippets that save time when posting in forums or sending private messagesCreating Macros: Follow simple steps to create your own macros for efficient communication within the Power Apps CommunityUsage Guide: Understand how to apply macros in posts and private messages, enhancing your interaction with the Community For detailed instructions and more information, visit the full page in your community today:Power Apps: Enabling Private Messaging & How to Use Macros (Power Apps)Power Automate: Enabling Private Messaging & How to Use Macros (Power Automate)  Copilot Studio: Enabling Private Messaging &How to Use Macros (Copilot Studio) Power Pages: Enabling Private Messaging & How to Use Macros (Power Pages)

April 4th Copilot Studio Coffee Chat | Recording Now Available

Did you miss the Copilot Studio Coffee Chat on April 4th? This exciting and informative session with Dewain Robinson and Gary Pretty is now available to watch in our Community Galleries!   This AMA discussed how Copilot Studio is using the conversational AI-powered technology to aid and assist in the building of chatbots. Dewain is a Principal Program Manager with Copilot Studio. Gary is a Principal Program Manager with Copilot Studio and Conversational AI. Both of them had great insights to share with the community and answered some very interesting questions!     As part of our ongoing Coffee Chat AMA series, this engaging session gives the Community the unique opportunity to learn more about the latest Power Platform Copilot plans, where we’ll focus, and gain insight into upcoming features. We’re looking forward to hearing from the community at the next AMA, so hang on to your questions!   Watch the recording in the Gallery today: April 4th Copilot Studio Coffee Chat AMA

Tuesday Tip: Subscriptions & Notifications

TUESDAY TIPS are our way of communicating helpful things we've learned or shared that have helped members of the Community. Whether you're just getting started or you're a seasoned pro, Tuesday Tips will help you know where to go, what to look for, and navigate your way through the ever-growing--and ever-changing--world of the Power Platform Community! We cover basics about the Community, provide a few "insider tips" to make your experience even better, and share best practices gleaned from our most active community members and Super Users.   With so many new Community members joining us each week, we'll also review a few of our "best practices" so you know just "how" the Community works, so make sure to watch the News & Announcements each week for the latest and greatest Tuesday Tips!   This Week: All About Subscriptions & Notifications We don't want you to a miss a thing in the Community! The best way to make sure you know what's going on in the News & Announcements, to blogs you follow, or forums and galleries you're interested in is to subscribe! These subscriptions ensure you receive automated messages about the most recent posts and replies. Even better, there are multiple ways you can subscribe to content and boards in the community! (Please note: if you have created an AAD (Azure Active Directory) account you won't be able to receive e-mail notifications.)   Subscribing to a Category  When you're looking at the entire category, select from the Options drop down and choose Subscribe.     You can then choose to Subscribe to all of the boards or select only the boards you want to receive notifications. When you're satisfied with your choices, click Save.   Subscribing to a Topic You can also subscribe to a single topic by clicking Subscribe from the Options drop down menu, while you are viewing the topic or in the General board overview, respectively.     Subscribing to a Label Find the labels at the bottom left of a post.From a particular post with a label, click on the label to filter by that label. This opens a window containing a list of posts with the label you have selected. Click Subscribe.           Note: You can only subscribe to a label at the board level. If you subscribe to a label named 'Copilot' at board #1, it will not automatically subscribe you to an identically named label at board #2. You will have to subscribe twice, once at each board.   Bookmarks Just like you can subscribe to topics and categories, you can also bookmark topics and boards from the same menus! Simply go to the Topic Options drop down menu to bookmark a topic or the Options drop down to bookmark a board. The difference between subscribing and bookmarking is that subscriptions provide you with notifications, whereas bookmarks provide you a static way of easily accessing your favorite boards from the My subscriptions area.   Managing & Viewing Your Subscriptions & Bookmarks To manage your subscriptions, click on your avatar and select My subscriptions from the drop-down menu.     From the Subscriptions & Notifications tab, you can manage your subscriptions, including your e-mail subscription options, your bookmarks, your notification settings, and your email notification format.     You can see a list of all your subscriptions and bookmarks and choose which ones to delete, either individually or in bulk, by checking multiple boxes.     A Note on Following Friends on Mobile Adding someone as a friend or selecting Follow in the mobile view does not allow you to subscribe to their activity feed. You will merely be able to see your friends’ biography, other personal information, or online status, and send messages more quickly by choosing who to send the message to from a list, as opposed to having to search by username.

Monthly Community User Group Update | April 2024

The monthly Community User Group Update is your resource for discovering User Group meetings and events happening around the world (and virtually), welcoming new User Groups to our Community, and more! Our amazing Community User Groups are an important part of the Power Platform Community, with more than 700 Community User Groups worldwide, we know they're a great way to engage personally, while giving our members a place to learn and grow together.   This month, we welcome 3 new User Groups in India, Wales, and Germany, and feature 8 User Group Events across Power Platform and Dynamics 365. Find out more below. New Power Platform User Groups   Power Platform Innovators (India) About: Our aim is to foster a collaborative environment where we can share upcoming Power Platform events, best practices, and valuable content related to Power Platform. Whether you’re a seasoned expert or a newcomer looking to learn, this group is for you. Let’s empower each other to achieve more with Power Platform. Join us in shaping the future of digital transformation!   Power Platform User Group (Wales) About: A Power Platform User Group in Wales (predominantly based in Cardiff but will look to hold sessions around Wales) to establish a community to share learnings and experience in all parts of the platform.   Power Platform User Group (Hannover) About: This group is for anyone who works with the services of Microsoft Power Platform or wants to learn more about it and no-code/low-code. And, of course, Microsoft Copilot application in the Power Platform.   New Dynamics365 User Groups   Ellucian CRM Recruit UK (United Kingdom) About: A group for United Kingdom universities using Ellucian CRM Recruit to manage their admissions process, to share good practice and resolve issues.    Business Central Mexico (Mexico City) About:  A place to find documentation, learning resources, and events focused on user needs in Mexico. We meet to discuss and answer questions about the current features in the standard localization that Microsoft provides, and what you only find in third-party locations. In addition, we focus on what's planned for new standard versions, recent legislation requirements, and more. Let's work together to drive request votes for Microsoft for features that aren't currently found—but are indispensable.   Dynamics 365 F&O User Group (Dublin) About: The Dynamics 365 F&O User Group - Ireland Chapter meets up in person at least twice yearly in One Microsoft Place Dublin for users to have the opportunity to have conversations on mutual topics, find out what’s new and on the Dynamics 365 FinOps Product Roadmap, get insights from customer and partner experiences, and access to Microsoft subject matter expertise.  Upcoming Power Platform Events    PAK Time (Power Apps Kwentuhan) 2024 #6 (Phillipines, Online) This is a continuation session of Custom API. Sir Jun Miano will be sharing firsthand experience on setting up custom API and best practices. (April 6, 2024)       Power Apps: Creating business applications rapidly (Sydney) At this event, learn how to choose the right app on Power Platform, creating a business application in an hour, and tips for using Copilot AI. While we recommend attending all 6 events in the series, each session is independent of one another, and you can join the topics of your interest. Think of it as a “Hop On, Hop Off” bus! Participation is free, but you need a personal computer (laptop) and we provide the rest. We look forward to seeing you there! (April 11, 2024)     April 2024 Cleveland Power Platform User Group (Independence, Ohio) Kickoff the meeting with networking, and then our speaker will share how to create responsive and intuitive Canvas Apps using features like Variables, Search and Filtering. And how PowerFx rich functions and expressions makes configuring those functionalities easier. Bring ideas to discuss and engage with other community members! (April 16, 2024)     Dynamics 365 and Power Platform 2024 Wave 1 Release (NYC, Online) This session features Aric Levin, Microsoft Business Applications MVP and Technical Architect at Avanade and Mihir Shah, Global CoC Leader of Microsoft Managed Services at IBM. We will cover some of the new features and enhancements related to the Power Platform, Dataverse, Maker Portal, Unified Interface and the Microsoft First Party Apps (Microsoft Dynamics 365) that were announced in the Microsoft Dynamics 365 and Power Platform 2024 Release Wave 1 Plan. (April 17, 2024)     Let’s Explore Copilot Studio Series: Bot Skills to Extend Your Copilots (Makati National Capital Reg... Join us for the second installment of our Let's Explore Copilot Studio Series, focusing on Bot Skills. Learn how to enhance your copilot's abilities to automate tasks within specific topics, from booking appointments to sending emails and managing tasks. Discover the power of Skills in expanding conversational capabilities. (April 30, 2024)   Upcoming Dynamics365 Events    Leveraging Customer Managed Keys (CMK) in Dynamics 365 (Noida, Uttar Pradesh, Online) This month's featured topic: Leveraging Customer Managed Keys (CMK) in Dynamics 365, with special guest Nitin Jain from Microsoft. We are excited and thankful to him for doing this session. Join us for this online session, which should be helpful to all Dynamics 365 developers, Technical Architects and Enterprise architects who are implementing Dynamics 365 and want to have more control on the security of their data over Microsoft Managed Keys. (April 11, 2024)     Stockholm D365 User Group April Meeting (Stockholm) This is a Swedish user group for D365 Finance and Operations, AX2012, CRM, CE, Project Operations, and Power BI.  (April 17, 2024)         Transportation Management in D365 F&SCM Q&A Session (Toronto, Online) Calling all Toronto UG members and beyond! Join us for an engaging and informative one-hour Q&A session, exclusively focused on Transportation Management System (TMS) within Dynamics 365 F&SCM. Whether you’re a seasoned professional or just curious about TMS, this event is for you. Bring your questions! (April 26, 2024)   Leaders, Create Your Events!    Leaders of existing User Groups, don’t forget to create your events within the Community platform. By doing so, you’ll enable us to share them in future posts and newsletters. Let’s spread the word and make these gatherings even more impactful! Stay tuned for more updates, inspiring stories, and collaborative opportunities from and for our Community User Groups.   P.S. Have an event or success story to share? Reach out to us – we’d love to feature you. Just leave a comment or send a PM here in the Community!

Exclusive LIVE Community Event: Power Apps Copilot Coffee Chat with Copilot Studio Product Team

We have closed kudos on this post at this time. Thank you to everyone who kudo'ed their RSVP--your invitations are coming soon!  Miss the window to RSVP? Don't worry--you can catch the recording of the meeting this week in the Community.  Details coming soon!   *****   It's time for the SECOND Power Apps Copilot Coffee Chat featuring the Copilot Studio product team, which will be held LIVE on April 3, 2024 at 9:30 AM Pacific Daylight Time (PDT).     This is an incredible opportunity to connect with members of the Copilot Studio product team and ask them anything about Copilot Studio. We'll share our special guests with you shortly--but we want to encourage to mark your calendars now because you will not want to miss the conversation.   This live event will give you the unique opportunity to learn more about Copilot Studio plans, where we’ll focus, and get insight into upcoming features. We’re looking forward to hearing from the community, so bring your questions!   TO GET ACCESS TO THIS EXCLUSIVE AMA: Kudo this post to reserve your spot! Reserve your spot now by kudoing this post.  Reservations will be prioritized on when your kudo for the post comes through, so don't wait! Click that "kudo button" today.   Invitations will be sent on April 2nd.Users posting Kudos after April 2nd. at 9AM PDT may not receive an invitation but will be able to view the session online after conclusion of the event. Give your "kudo" today and mark your calendars for April 3rd, 2024 at 9:30 AM PDT and join us for an engaging and informative session!

Tuesday Tip: Blogging in the Community is a Great Way to Start

TUESDAY TIPS are our way of communicating helpful things we've learned or shared that have helped members of the Community. Whether you're just getting started or you're a seasoned pro, Tuesday Tips will help you know where to go, what to look for, and navigate your way through the ever-growing--and ever-changing--world of the Power Platform Community! We cover basics about the Community, provide a few "insider tips" to make your experience even better, and share best practices gleaned from our most active community members and Super Users.   With so many new Community members joining us each week, we'll also review a few of our "best practices" so you know just "how" the Community works, so make sure to watch the News & Announcements each week for the latest and greatest Tuesday Tips!   This Week's Topic: Blogging in the Community Are you new to our Communities and feel like you may know a few things to share, but you're not quite ready to start answering questions in the forums? A great place to start is the Community blog! Whether you've been using Power Platform for awhile, or you're new to the low-code revolution, the Community blog is a place for anyone who can write, has some great insight to share, and is willing to commit to posting regularly! In other words, we want YOU to join the Community blog.    Why should you consider becoming a blog author? Here are just a few great reasons. 🎉   Learn from Each Other: Our community is like a bustling marketplace of ideas. By sharing your experiences and insights, you contribute to a dynamic ecosystem where makers learn from one another. Your unique perspective matters! Collaborate and Innovate: Imagine a virtual brainstorming session where minds collide, ideas spark, and solutions emerge. That’s what our community blog offers—a platform for collaboration and innovation. Together, we can build something extraordinary. Showcase the Power of Low-Code: You know that feeling when you discover a hidden gem? By writing about your experience with your favorite Power Platform tool, you’re shining a spotlight on its capabilities and real-world applications. It’s like saying, “Hey world, check out this amazing tool!” Earn Trust and Credibility: When you share valuable information, you become a trusted resource. Your fellow community members rely on your tips, tricks, and know-how. It’s like being the go-to friend who always has the best recommendations. Empower Others: By contributing to our community blog, you empower others to level up their skills. Whether it’s a nifty workaround, a time-saving hack, or an aha moment, your words have impact. So grab your keyboard, brew your favorite beverage, and start writing! Your insights matter and your voice counts! With every blog shared in the Community, we all do a better job of tackling complex challenges with gusto. 🚀   Welcome aboard, future blog author! ✍️✏️🌠 Get started blogging across the Power Platform Communities today! Just follow one of the links below to begin your blogging adventure.   Power Apps: https://powerusers.microsoft.com/t5/Power-Apps-Community-Blog/bg-p/PowerAppsBlog Power Automate: https://powerusers.microsoft.com/t5/Power-Automate-Community-Blog/bg-p/MPABlog Copilot Studio: https://powerusers.microsoft.com/t5/Copilot-Studio-Community-Blog/bg-p/PVACommunityBlog Power Pages: https://powerusers.microsoft.com/t5/Power-Pages-Community-Blog/bg-p/mpp_blog   When you follow the link, look for the Message Admins button like this on the page's right rail, and let us know you're interested. We can't wait to connect with you and help you get started. Thanks for being part of our incredible community--and thanks for becoming part of the community blog!

Top Solution Authors
Top Kudoed Authors
Users online (7,143)