cancel
Showing results for 
Search instead for 
Did you mean: 
Reply
PPanfili
Helper I
Helper I

Submit to Multiple Forms with Different Datasources

Hello everyone!! 

I have been creating an App, for a school I am working in; in order to submit Discipline reports for students.

 

If you look at the attached screen, you will see various fields, inputting various types of information, into different datasources.  In total there are about 5-6 different spreadsheets behind this app.  In many of the spreadsheets, information will be duplicated.  For instance, Last_Name & First_Name are in all of the datasources.  I know this maynot be ideal, however, I have to keep it like this.  There are unique fields, which would be Last_Name, First_Name, Date, Incident, Discipline_Given.

 

My question is this.  Lets say someone inputs all the data on the attached screen; and then sends the data to the various datasources.  Then they realize that they made  mistake, perhaps, they put in the wrong grade or something.  

 

What would be the best method to Edit this information, in all of the Datasources.  Without have to do each one seperatly?  Basically, if I create an EditForm screen, would I be able to have the user search for this Record, and then edit the field, and then have it post to all the proper places?  I understand how to update only one of the datasources, but I want to be able to search, and update them all at once; to prevent redunancy, and to make it easier for the user.

 

Attached is a copy of the screenshot of the data that is entered it is tied to the following spreadsheets:  All, Log, Discipline, ISAP, Info...

 

I hope someon can shed some light on thisScreenshot.png

1 ACCEPTED SOLUTION

Accepted Solutions

Ok, finally got it working the way that I wanted.  I had to go ahead and add a few textboxes, in order to not break the Lookup fields, but so far everything is working good.

 

Thanks again, as I could of never figured this out on my own.

 

Here is the code.

 

Patch(All, LookUp(All, First_Name=DataCard31.Default && Last_Name=DataCard18.Default && Infraction=DataCard42.Default), {First_Name: LookUp(Log, First_Name=DataCard31.Default && Last_Name=DataCard18.Default && Date_Of_Offense=DataCard34.Default, Label23.Text), Last_Name: LookUp(Log, First_Name=DataCard31.Default && Last_Name=DataCard18.Default && Date_Of_Offense=DataCard34.Default, LastUpdate.Text), Actual_Resolution_Date: LookUp(Log, First_Name=DataCard31.Default && Last_Name=DataCard18.Default && Date_Of_Offense=DataCard34.Default, Acutal_Resolution_Date), Incident_Date: LookUp(Log, First_Name=DataCard31.Default && Last_Name=DataCard18.Default && Date_Of_Offense=DataCard34.Default, Date_Of_Offense), Ethnicity: LookUp(Log, First_Name=DataCard31.Default && Last_Name=DataCard18.Default && Date_Of_Offense=DataCard34.Default, Ethnicity), Gender: LookUp(Log, First_Name=DataCard31.Default && Last_Name=DataCard18.Default && Date_Of_Offense=DataCard34.Default, Gender), Point_Assigned: LookUp(Log, First_Name=DataCard31.Default && Last_Name=DataCard18.Default && Date_Of_Offense=DataCard34.Default, Points), Discipline_Assigned: LookUp(Log, First_Name=DataCard31.Default && Last_Name=DataCard18.Default && Date_Of_Offense=DataCard34.Default, Disc_Assigned), Infraction: LookUp(Log, First_Name=DataCard31.Default && Last_Name=DataCard18.Default && Date_Of_Offense=DataCard34.Default, OffenseUpdate.Text), Grade: LookUp(Log, First_Name=DataCard31.Default && Last_Name=DataCard18.Default && Date_Of_Offense=DataCard34.Default, Grade)}); 

 

Patch(Discipline, LookUp(Discipline, First_Name=DataCard31.Default && Last_Name=DataCard18.Default && Student_Offense=DataCard42.Default && Date_Of_Offense=DataCard34.Default), {First_Name: LookUp(Log, First_Name=DataCard31.Default && Last_Name=DataCard18.Default && Date_Of_Offense=DataCard34.Default && Student_Offense=DataCard42.Default, Label23.Text), Last_Name: LookUp(Log, First_Name=DataCard31.Default && Last_Name=DataCard18.Default && Date_Of_Offense=DataCard34.Default && Student_Offense=DataCard42.Default, LastUpdate.Text), Date_Of_Offense: LookUp(Log, First_Name=DataCard31.Default && Last_Name=DataCard18.Default && Date_Of_Offense=DataCard34.Default && Student_Offense=DataCard42.Default, Date_Of_Offense), Points: LookUp(Log, First_Name=DataCard31.Default && Last_Name=DataCard18.Default && Date_Of_Offense=DataCard34.Default &&Student_Offense=DataCard42.Default,Points), Discipline_Given: LookUp(Log, First_Name=DataCard31.Default && Last_Name=DataCard18.Default && Date_Of_Offense=DataCard34.Default && Student_Offense=DataCard42.Default, Disc_Assigned), Student_Offense: LookUp(Log, First_Name=DataCard31.Default && Last_Name=DataCard18.Default && Date_Of_Offense=DataCard34.Default && Student_Offense=DataCard42.Default, OffenseUpdate.Text), Period: LookUp(Log, First_Name=DataCard31.Default && Last_Name=DataCard18.Default && Date_Of_Offense=DataCard34.Default && Student_Offense=DataCard42.Default, Period_Of_Offense), Administrator: LookUp(Log, First_Name=DataCard31.Default && Last_Name=DataCard18.Default && Date_Of_Offense=DataCard34.Default && Student_Offense=DataCard42.Default, Administrator), Date: LookUp(Log, First_Name=DataCard31.Default && Last_Name=DataCard18.Default && Date_Of_Offense=DataCard34.Default && Student_Offense=DataCard42.Default, Today_Date), Code: LookUp(Log, First_Name=DataCard31.Default && Last_Name=DataCard18.Default && Date_Of_Offense=DataCard34.Default && Student_Offense=DataCard42.Default, Code), Period_Given: LookUp(Log, First_Name=DataCard31.Default && Last_Name=DataCard18.Default && Date_Of_Offense=DataCard34.Default && Student_Offense=DataCard42.Default, ISAP_Periods), Date_Seen_Admin: LookUp(Log, First_Name=DataCard31.Default && Last_Name=DataCard18.Default && Date_Of_Offense=DataCard34.Default && Student_Offense=DataCard42.Default, Date_Seen_Administrator), Grade: LookUp(Log, First_Name=DataCard31.Default && Last_Name=DataCard18.Default && Date_Of_Offense=DataCard34.Default &&Student_Offense=DataCard42.Default, Grade)});                                                                                                                                                                                                                                                                                                                                           Patch(ISAP, LookUp(ISAP, First_Name=DataCard31.Default && Last_Name=DataCard18.Default && Start_Date=DataCard53.Default && End_Date=DataCard17.Default), {First_Name: LookUp(Log, First_Name=DataCard31.Default && Last_Name=DataCard18.Default && Start_Date=DataCard53.Default && End_Date=DataCard17.Default, Label23.Text), Last_Name: LookUp(Log, First_Name=DataCard31.Default && Last_Name=DataCard18.Default && Start_Date=DataCard53.Default && End_Date=DataCard17.Default, LastUpdate.Text), Grade: LookUp(Log, First_Name=DataCard31.Default && Last_Name=DataCard18.Default && Start_Date=DataCard53.Default && End_Date=DataCard17.Default, Grade), Period: LookUp(Log, First_Name=DataCard31.Default && Last_Name=DataCard18.Default && Start_Date=DataCard53.Default && End_Date=DataCard17.Default, ISAP_Periods), Start_Date: LookUp(Log,First_Name=DataCard31.Default && Last_Name=DataCard18.Default && Start_Date=DataCard53.Default && End_Date=DataCard17.Default, Start_Date),End_Date: LookUp(Log,First_Name=DataCard31.Default && Last_Name=DataCard18.Default && Start_Date=DataCard53.Default && End_Date=DataCard17.Default, End_Date),Todays_Date: LookUp(Log,First_Name=DataCard31.Default && Last_Name=DataCard18.Default && Start_Date=DataCard53.Default && End_Date=DataCard17.Default, Today_Date), Administrator: LookUp(Log, First_Name=DataCard31.Default && Last_Name=DataCard18.Default && Start_Date=DataCard53.Default && End_Date=DataCard17.Default, Administrator)});                                                                                                                                                                                                                                                                                     Patch(Log, LookUp(Log, First_Name=DataCard31.Default && Last_Name=DataCard18.Default && Student_Offense=DataCard42.Default), {Student_Offense: LookUp(Log, First_Name=DataCard31.Default && Last_Name=DataCard18.Default && Start_Date=DataCard53.Default && End_Date=DataCard17.Default, OffenseUpdate.Text), Last_Name: LookUp(Log, First_Name=DataCard31.Default && Last_Name=DataCard18.Default && Start_Date=DataCard53.Default && End_Date=DataCard17.Default, LastUpdate.Text),First_Name: LookUp(Log, First_Name=DataCard31.Default && Last_Name=DataCard18.Default && Date_Of_Offense=DataCard34.Default, Label23.Text)})

View solution in original post

14 REPLIES 14
LukeW-MSFT
Power Apps
Power Apps

Hello!

Thanks for the thorough explanation of your situation! It sounds like the answer for you may lie in the Form.OnSuccess property. If a form submission succeeds, it sounds like you want to update the redundant data in other data sources (for example, last name is updated in DataSource A, so you want to update last name with the new value in DataSource B).

To test this out, I built two very similar DataSources ("lucaswh-Menu" and "lucaswh-Hamburgers") that have overlapping data. I have an edit form that points to the Hamburgers data source. When that is updated, I want to also update the corresponding record in the Menu data source. I was able to do this successfully by using the Patch formula:

Form1.OnSuccess = Patch('lucaswh-Menu', LookUp('lucaswh-Menu', Title = "Patty"), {Amount: LookUp('lucaswh-Hamburgers', Title = "Patty", Amount)})

 

After Hamburgers is successfully updated, we patch the Menu with the corresponding value from the updated Hamburgers data source.

 

My example only works for one row (Patty) and one column (Amount), but you could extend this to update the whole record by changing the last argument to Patch to be something like {Val1: Lookup(DS, Title, Val1), Val2: Lookup(DS, Title, Val2), etc...}. 

 

UpdateOnSuccess.png

 

Hope this helps!

 

 

Luke,

 

Thank you for this response, as this is a major drawback on what I am buildling.  I am having a bit of trouble understanding exactly how to write this out in my situation though.  I am a little confused with the part that says Title = "Patty" in the formula?  This has me hung up, because it is a title of a column? Or textbox?  

 

So here is a better representation of what I am working with.  To start I have three data sources: All, Discipline, ISAP.  Attached see a start of me creating a form to edit all three tables upon update.  How would my code work?  

Patch('All', Lookup('All', Title = "?????"), {Grade: Lookup('All', Title = "???????", Grade)})

 

I also, have never used the OnSucces function.  Does this mean that after I press the Button, it triggers?

 

To be clear, I need the user to be able to come to this screen; search for data that they already inputted on a previous screen, which I am accomplising by the Dropboxes in the headings.  Once they locate this data, based on last name and date.  I need them to be able to change any of the columns associated with this record.  And I need that change to be reflected across all the Datasources.  

 

This seems very complicated to me, and I hope it can be accomplished.DataSearch.png

Hi again!

Apologies for the unclear example! First, take a look at the following documentation:

 

LookUp: https://docs.microsoft.com/en-us/powerapps/functions/function-filter-lookup

Patch: https://docs.microsoft.com/en-us/powerapps/functions/function-patch

 

In my example, "Title" is simply the name of the column, you might want to use "Last_Name" instead to update all records for a given Last Name. In your case, let's assume that the DataSource behind Form5 is "All". Then if you set OnSuccess to be:


Form5.OnSuccess = Patch('Discipline', LookUp('Discipline', Last_Name=DataCardX.Default), {Grade: LookUp('All', Last_Name=DataCardX.Default, Grade)}); Patch('ISAP', LookUp('ISAP', Last_Name=DataCardX.Default), {Grade: LookUp('All', Last_Name=DataCardX.Default, Grade)})

 

where DataCardX is the data card for the Last_Name field (you can click around the data cards on the left side to figure out which one this is - I can't tell from your photo).

 

Assuming the Button calls SubmitForm(Form5) and the SubmitForm call completes successfully, yes, this will trigger an update of the Grade field in the "Discipline" and "ISAP" data sources to match that of the "All" data source. I hope this helps!

Luke,

I greatly appreciate your assistance on this, as I am a novice, and this is way over my head.  We are getting closer, and I provided you with a bigger screenshot so you can see what I am working with.

 

I also added the second from on this screen shot, this is Form1, on the bottom right, which is tied to the ALL table.  As you can see in the picture, various columns overlap.  Last_Name, First_Name, Grade, Points, and a few others.

 

I added your formula to the onsuccess of Form5, which is tied ot the datasource Discipline.  Both of these forms are filtered by the dropdowns at the top.

 

When changing something in Form5, and hitting the button, the data is indeed updated in Discipline Datasource, but not in the ALL datasource, or any other datasource for that matter.  As you can see in the attached screenshot, I actually updated the grade in Form5, and the change is not reflecting in Form1, nor is it reflecting in the backend datasource.  

 

My question is how does it know, which record is the appropriate one to update in the other form1?  Also, what if another field is updated, besides grade?  How will it know to update everywhere else?

 

Again, I feel like this is an extremely complex situation, basically because the way the data is set up, but unfortunatly I cannot change that.

 

I hope we can arrive at an conclusion on this, as it is way above my paygrade at this point.Screen.png

Glad to hear we are getting closer. 

 

Since Form5 is tied to the "Discipline" datasource (I thought it was tied to "All"), the formula is not correct. The correct formula should be:

 

Form5.OnSuccess = Patch('All', LookUp('All', Last_Name=DataCard18.Default), {Grade: LookUp('Discipline', Last_Name=DataCard18.Default, Grade)}); Patch('ISAP', LookUp('ISAP', Last_Name=DataCard18.Default), {Grade: LookUp('Discipline', Last_Name=DataCard18.Default, Grade)})

 

I would expect this formula to result in Form1 updating as well. Let me know if it still does not work as expected.


My question is how does it know, which record is the appropriate one to update in the other form1? 

 

I need to know what the datasource backing Form1 is to answer this. You already told me Form5 is backed by "Discipline". And you want Form1 to update all the data sources in a similar manner to Form5 right? Let me know.

 


 


Also, what if another field is updated, besides grade?  How will it know to update everywhere else?

 

You will need to add more parameters (separated by commas) inside the "{ ... }" in the Patch function. For example, in Form5.OnSuccess it will look like: Patch('All', LookUp('All', Last_Name=DataCard18.Default), {Grade: LookUp('Discipline', Last_Name=DataCard18.Default, Grade), Col2: LookUp('Discipline', Last_Name=DataCard18.Default, Col2), Col3: LookUp('Discipline', Last_Name=DataCard18.Default, Col3)}); Patch(...

 

If you are still unable to get it working (reasonable, as the formulas are getting pretty long at this point), please reply with the following and I can guide you towards your exact solution (and tell you why it works, of course):

 

1. A list of all Forms in your PowerApp that you want to use for this multi-datasource updating process and the datasources behind those forms

 

2. A list of columns for the 3 DataSources (e.g. Discipline: Last_Name, First_Name, Grade, etc...)

This formula place on OnSuccess of the Form5 is still not resulting in Form 1 updating.

 

Form5.OnSuccess = Patch('All', LookUp('All', Last_Name=DataCard18.Default), {Grade: LookUp('Discipline', Last_Name=DataCard18.Default, Grade)}); Patch('ISAP', LookUp('ISAP', Last_Name=DataCard18.Default), {Grade: LookUp('Discipline', Last_Name=DataCard18.Default, Grade)})

 

Form 5 is tied to Discipline.  Form 1 is tied to DataSource All.

 

Attached is a list of all my datasources. 

 

As of now there are only 2 forms; because I was just waiting to get them 2 working, then was just going to add to code.  I will make up fake forms now just to see if you can get code working.   

 

Form5 = Discipline

Form1= All

Form2=ISAP

Form3=LOG

 

Here are the columns in the the Datasources...

 

Discipline----

Last_NameFirst_NameGradePeriodAdministratorDateDate_Of_OffenseCodePointsPeriod_GivenStudent_OffenseDiscipline_GivenDate_Seen_Admin
__PowerAppsId__

 

All

Last_NameFirst_NameGradeGenderEthnicityInfractionIncident_DatePoint_AssignedDiscipline_AssignedActual_Resolution_DatePoints_YTD
__PowerAppsId__

 

ISAP

Last_NameFirst_NameGradeStart_DateEnd_DatePeriod123456789AdministratorNOTESTodays_Date
__PowerAppsId__

 

LOG

Last_NameFirst_NamePower_School_GradeGradePointsDisc_AssignedStart_DateEnd_DateISAP_PeriodsCodeAdministratorGenderEthnicityDate_Seen_AdministratorToday_DateStudent_OffenseDate_Of_OffensePeriod_Of_OffenseReporting_TeacherAcutal_Resolution_DatePrepared_By__PowerAppsId__

 

 

I thank you again for this help, as there is no way I would be able to work out this complex formula...I hope in the end it will work; but it just seems really complicated to me.

Let's try to get the two forms you have right now working first.

 

Form5.OnSuccess = 

 

Patch('All', LookUp('All', Last_Name=DataCard18.Default), {First_Name: LookUp('Discipline', Last_Name=DataCard18.Default, First_Name), Last_Name: LookUp('Discipline', Last_Name=DataCard18.Default, Last_Name), Grade: LookUp('Discipline', Last_Name=DataCard18.Default, Grade)}); Patch('ISAP', LookUp('ISAP', Last_Name=DataCard18.Default), {First_Name: LookUp('Discipline', Last_Name=DataCard18.Default, First_Name), Last_Name: LookUp('Discipline', Last_Name=DataCard18.Default, Last_Name), Grade: LookUp('Discipline', Last_Name=DataCard18.Default, Grade), Administrator: LookUp('Discipline', Last_Name=DataCard18.Default, Administrator)})

 

This should result in the "All" and 'ISAP" data sources being updated to reflect the changes in the "Discipline" data source. This should update the columns First_Name, Last_Name, Grade, and Administrator (Administrator for "ISAP" only, since it doesn't exist in "All")

 

Form1.OnSuccess =

 

Patch('Discipline', LookUp('Discipline', Last_Name=DataCard18.Default), {First_Name: LookUp('All', Last_Name=DataCard18.Default, First_Name), Last_Name: LookUp('All', Last_Name=DataCard18.Default, Last_Name), Grade: LookUp('All', Last_Name=DataCard18.Default, Grade)}); Patch('ISAP', LookUp('ISAP', Last_Name=DataCard18.Default), {First_Name: LookUp('All', Last_Name=DataCard18.Default, First_Name), Last_Name: LookUp('All', Last_Name=DataCard18.Default, Last_Name), Grade: LookUp('All', Last_Name=DataCard18.Default, Grade))

This should result in the "Discipline" and 'ISAP" data sources being updated to reflect the changes in the "All" data source. This should update the columns First_Name, Last_Name, Grade.

 

Please try these and let me know the results!

To start, I greatly appreciate this.  It is almost working as I need it too.  

 

On Form_5, if I change the Last_Name, First_Name, Grade, and Admin, they are in turn changing on the ISAP Datasource, but not the ALL Datesource.  

 

If I change the Last_Name of Form5, it results, in a Hiccup of sorts, which I believe is because Form1 is tied to ALL, and those fields are not updating, so Form 1 results, just disappears now, because there is no Last_Name Match, because it changed only in the ISAP and Discipline Datasources, but not all.

 

Once that hiccup is worked out, my next task would be to just be able to understand the formula, so that I can add fields to be updated through all the datasources.  

 

My thought and hope is the, that the Screen will work backwards via the Forms....So I will have all the Fields in Form5 Datasource showing.  So if someone were to update Last_Name, it would filter down to the Datasources on Form4, Form3, Form2, Form1.  So On the screen there will only be one instance of the Last_Name Column.  

Then, from there, whatever is in the other forms will show only once, and update the rest of the forms... 

 

Basically, I dont want duplicate fields showing on the screen, just 1 field per item that is necessary.

Your explanation of the "hiccup" sound reasonable to me. Really, the Form5 update should update the "All" as well as the "ISAP" Datasource so that shouldn't be happening in the first place.

 

Form5 issues:

 

I double checked the Form5.OnSuccess formula and it looks correct to me. Still not sure why it is only updating "ISAP". There may be a data issue in your databases which I am unable to diagnose from here.

 

Also, keep in mind that my formulas assume that last names in your data bases are unique for each student. If they are not, perhaps you may want to change all the code that says "Last_Name=DataCard18.Default" to "First_Name=DataCardX.Default && Last_Name=DataCard18.Default" where X is the number of the data card that contains the last name.

 

Form1 issues:

 

I realized that the formula I gave for Form1.OnSuccess may not be correct since it references DataCard18, which is in Form5, not Form1. Please subsitute DataCard18 for whichever Data Card in Form1 contains the Last_Name field info.

 

Hope this gets you closer.

 

-Luke 

Helpful resources

Announcements

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!

Launch Event Registration: Redefine What's Possible Using AI

Join Microsoft product leaders and engineers for an in-depth look at the latest features in Microsoft Dynamics 365 and Microsoft Power Platform. Learn how advances in AI and Microsoft Copilot can help you connect teams, processes, and data, and respond to changing business needs with greater agility. We’ll share insights and demonstrate how 2024 release wave 1 updates and advancements will help you:   Streamline business processes, automate repetitive tasks, and unlock creativity using the power of Copilot and role-specific insights and actions. Unify customer data to optimize customer journeys with generative AI and foster collaboration between sales and marketing teams. Strengthen governance with upgraded tools and features. Accelerate low-code development  using natural language and streamlined tools. Plus, you can get answers to your questions during our live Q&A chat! Don't wait--register today by clicking the image below!  

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