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!

1 ACCEPTED SOLUTION

Accepted Solutions
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!

View solution in original post

25 REPLIES 25
RandyHayes
Super User
Super User

@PowerGirl 

As I read through your post and also your formula, I believe your bigger challenge seems to be how to get the 3% in 3 and 2% in 2 year values.  My question will be this, for the CostReduction column, will your format always be like you demonstrate?  Are there other factors of that column that should be know?  (i.e. surprises like - some column may contain nothing, or some special text)

 

 

_____________________________________________________________________________________
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!
PowerGirl
Resolver I
Resolver I

@RandyHayes

For now this can look empty, with one, two, three or four different discounts in different years. That is why I included 4 For All s. This way I could get a table, but then how to calculate the right price per year. That is my next challenge. 

RandyHayes
Super User
Super User

@PowerGirl 

If you are aiming to get the two values at the bottom of the example you gave, then there really is no need for collections for any of this.  My concern with that approach would be how are you going to handle no discounts, 1, 2, 3 or 4 discounts?  You're going to need a formula not a structure so much.  

That said, that is why I was focused on the cost reduction text - that is where it is all going to hinge.  Can you give me an example of a 4 value cost reduction (i.e. 4 different percent's)?

_____________________________________________________________________________________
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 
This would look like: 3% in 2 years 2% in 2 years 1.5% in 2 years 0.5% in 2 years

in the future they might put only something like 3x3 and I would need to change it to the “standard” to calculate it or allow them only to use this format 

poweractivate
Most Valuable Professional
Most Valuable Professional

@PowerGirl 

 

Your question seems to presume collections and the complex nested ForAll formulas are a specific set of preconditions to a viable end solution in the Power Apps Canvas App. You did attempt it though and also you did post specific details about what you tried, which is much appreciated.

 

We'd advise in this case you start with the end objective level rather than the actual implementation detail and indicate this in the next reply. We think this may also be related to the reason that @RandyHayes is asking you for examples of the columns in multiple replies, etc.

 

So that is why we think that instead, we believe you should just give an example of the end result. For example, instead of "Formulas" it should just be what rows you would expect for the real world scenario usage. Yes, it would be useful for you to include the varying possibilities of the percentages being there or not being there, etc. however we'd like version where there is not the implicit presumptions of the implementation paradigms, as this version by itself is not so easy for us to advise you on. @RandyHayes questions so far are just part of the evidence of this being the case here.

 

1) Because the screenshot depiction and also the original post appears to make presumptions about certain paradigms, we are unsure how to help you with it. Instead, we'd advise you provide a depiction of the end result you'd like to see, pretending you did not know Power Apps Canvas Apps  evenexists, then this way we might be able to better help you with a more comprehensive picture of what you would like as the actual solution, then advise you from that vantage point.

 

2) We would like to ask you if one presumption is correct or not. Is Power Apps Canvas App your specifically preferred or required methodology of the implementation for this scenario? We are presuming yes based on the original post. However, if the presumption is incorrect, please indicate this in the next reply. It is highly likely that Power Apps Canvas App has a very good way of doing what you are asking, we are asking this in case after we check it that one or more other components of Power Apps, instead of or even in addition to the Power Apps Canvas App would end up being more appropriate for this case (but in order for us to determine this with a more complete picture of your scenario, please see #1 above as well).

 

 

Thank you for your response @poweractivate . 1. Response: You are right, I showed what I am working on already to try to get an answer. The original problem is as follows. I 

need to calculate the total annual spend and the net present value for different projects. For that, I have the following information available (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 

Rate for NPV 10%

In excel there is a formula to get the NPV, but I can’t find it in power apps. If I would have to calculate this in excel I would have used a similar table as attached. 

how can I calculate these two values (total annual spend and net present value) and display this in power apps? I need to compare this values from different selected projects in a gallery and the calculation of the piece price is also done in the app. 
2. Response: in the project we are using Power Apps, power automate and power BI. I thought that since the calculation of the piece price is done in the app I could find a way to do it also here, but I am open to suggestions. I just need to show the two values in the app in a gallery to be able to compare them 

 

I hope this is clearer. Let me know if you need more information. 
Thank you for your feedback 

Using a formula only would be awesome. Would you have any suggestions of this formula? 

poweractivate
Most Valuable Professional
Most Valuable Professional

@PowerGirl 

 

If you are using Power BI this is much easier and straightforward to do there, as Power BI is a better fit for this type of thing. Here's just one of likely many examples to do it in Power BI (community.powerbi.com) 

 

Then you can connect to Power BI from Canvas App (docs.microsoft.com)

 

You can even instead Embed a Canvas App inside a Power BI report with context passed into the Canvas App from Power BI Re...  (e.g. when something is selected in Power BI, pass it into the Canvas App and make the Canvas App show something or present a call to action to do something)Of course at that point you might want to consider just using the report. However, embedding a Canvas App inside a Power BI Report allows you to do things like interactive experiences, etc. that cannot be done from Power BI without the embedded Canvas App.

 

In case you must absolutely do it from Canvas App only with no other component being used such as Power BI, then we could try to check more into it if you want. If it has to be in the Canvas App only we may still be able to help, but the solution will be probably more complex to do in the Canvas App only. 

To be honest I am not very familiar with Power BI. If there is a solution on Power Apps I would prefer it. Anyway I will have a look on the links you send me and see how it works. 

We have tried before to calculate the total annual spend in Power BI (and with that we could use the NPV formula) with the same input and could not figure out how to get the right piece price based on the column of Cost reduction. Would you have any suggestions on what to use? Would this be a calculated column? What formula to use? We have the same inputs in Power BI. 

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 (5,553)