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

Having some issues with LastSubmit variable being passed over to another form that is using a different DataSource.

Hi there,

Having some issues with LastSubmit variable being passed over to another form that is using a different DataSource.

I have two Datasources and three forms. Two of the forms use the same datasource and the other form uses a different datasource. I set a variable of the first form to get the LastSubmit.ID of that form and then I use that for the other form that uses a different datasource. FormMode = New, a new form is submitted at the Personal Info screen. Then the user continues to fill out the form and depending on their answers, it will either take them to another screen that uses the third form that uses a different datasource OR it will use the answers they submitted in the subsequent screens and put their answers on a form that uses the same datasource as the first submitted form that is housed on its own screen. The problem is, that when the user attempts to enter their information and submit the thrid form, the column I try and match on is being set to 0 instead of the ID of the first submitted form, which should be using the variable that I set on the first SubmitForm button.

**Note I am no longer getting the error message that is in the GIF.**

Here is a link to the GIF workflow for this app.
https://streamable.com/k4seli

1 ACCEPTED SOLUTION

Accepted Solutions
WarrenBelz
Most Valuable Professional
Most Valuable Professional

@borowiakn ,

Yes, setting the Variable needs to go on OnSuccess - on a new form that is the only way you can catch it other than referring to LastSubmit later on. The rest does not matter.

Can you please send me your email via Private Message - I may be available sometime tomorrow afternoon (my time), so it will be later Monday night for you.

 

Please click Accept as solution if my post helped you solve your issue. This will help others find it more readily. It also closes the item. If the content was useful in other ways, please consider giving it Thumbs Up.

View solution in original post

18 REPLIES 18
WarrenBelz
Most Valuable Professional
Most Valuable Professional

Hi @borowiakn ,

Firstly, can you please consider posting your code as Text - it helps greatly when referring to and correcting it.

The two relevant things out of your screenshots are the properties of MasterID_DataCard1 - the Default

If(
  varMode="Edit",
  ThisItem.MasterID,
  LastContactID
)

 and the Update

If(
  BrowseGallery1_1.Selected.ID=0,
  Value(lastID),
  Value(BrowseGalery1_1.Selected.ID)
)

so the two things I initially need to know is when and where you set the Variables LastContactID and lastID.

Also in your animation, I assume this is the "Add Person" button not working? How is this connected to the card above and what is the OnSelect of that button?

 

Please click Accept as solution if my post helped you solve your issue. This will help others find it more readily. It also closes the item. If the content was useful in other ways, please consider giving it Thumbs Up.

 

borowiakn
Helper I
Helper I

@WarrenBelz - My sincere apologies, I will be sure to put the code as text.


NextButton
.OnSelect

SubmitForm(ScreeningForm);
Reset(Status_Dropdown);
Reset(Reason);
Reset(Type);
Reset(EmergencyContact);
Reset(DatePicker2);
Reset(ProjectName_Dropdown);
Reset(ProjectNumber);
Reset(RoleDropDown);
Reset(PhoneNumber);
Reset(WorkerName);
Reset(CompanyName);
Reset(Emergency_Contact_Number);
Reset(office_jobsite);
Reset(office);
Reset(other_craft_field);
Reset(Non_Clayco_Dropdown);
Set(lastID,ScreeningForm.LastSubmit.ID);
Set(LastContactID,ScreeningForm.LastSubmit.ID);
ResetForm(ScreeningForm);
ResetForm(QuestionsForm);

If(Reason.Selected.ProductName="Travel" || ReasonView.Text= "Travel", Navigate(Travel_Info),Navigate('Screening Questions'));
Set(varMode,"New");
Refresh('[dbo].[COVID_Screening_Form]');

PersonalInfo-Screen.OnVisible (The form I have is on the same page but it is hidden and the fields are being referenced in the form.)

UpdateContext({varNon: "Non-Clayco",varOffice: "Office", varJobsite: "Jobsite"});

Set(statusVar,If(BrowseGallery1_1.Selected.status="true",true,false));
ClearCollect(Role,'[dbo].[COVID_Screening_Form]');
Reset(Status_Dropdown);
Reset(Reason);
Reset(Type);
Reset(EmergencyContact);
Reset(DatePicker2);
Reset(ProjectName_Dropdown);
Reset(ProjectNumber);
Reset(RoleDropDown);
Reset(PhoneNumber);
Reset(WorkerName);
Reset(CompanyName);
Reset(Emergency_Contact_Number);
Reset(other_craft_field);
Reset(office);
Reset(office_jobsite);

ResetForm(ScreeningForm);
If(varMode="Edit",EditForm(ScreeningForm),NewForm(ScreeningForm));
Clear(RecordsCollection);
UpdateContext({showPopup3:false});

 

Regarding the "Add Person" button, I was using a Patch and Collect statement but was told by Microsoft that it would be easier / better to use a different datasource to store the information that is being entered seperate from the first database and to just reference the first forms ID in a corresponding column on the second database.

AddPersonButton.OnSelect

/*ForAll(
    Gallery1.AllItems,
    If(IsBlank(MasterID),
    Patch(
        '[dbo].[COVID_Close_Contact_Form]',
        Defaults('[dbo].[COVID_Close_Contact_Form]'),
        {
            Contact_Name: cc_Name.Text,
            Contact_Company: cc_Company.Text,
            Contact_Date: cc_Date.SelectedDate,
            Contact_Duration: cc_Duration.Text,
            Contact_Describe: cc_Describe.Text,
            Contact_Created_By: Contact_Created_By,
            MasterID: BrowseGallery1_1.Selected.ID
        }
    ),
      Patch(
        '[dbo].[COVID_Close_Contact_Form]',
        {MasterID:MasterID},
        {
                       Contact_Name: cc_Name.Text,
            Contact_Company: cc_Company.Text,
            Contact_Date: cc_Date.SelectedDate,
            Contact_Duration: cc_Duration.Text,
            Contact_Describe: cc_Describe.Text,
            Contact_Created_By: Contact_Created_By,
            MasterID: lastContactID
        }
    )
));*/
SubmitForm(Contact_Tracing_Form);
Set(
    successMessage,
    "Contact Successfully added!"
);

Refresh('[dbo].[COVID_Close_Contact_Form]');
Reset(cc_Company);
Reset(cc_Date);
Reset(cc_Describe);
Reset(cc_Duration);
Reset(cc_Name);

 

Please let me know if you have any other questions and I will do my best to explain what the intended behavior is and what the actual behavior is.

 

Thanks again!

WarrenBelz
Most Valuable Professional
Most Valuable Professional

@borowiakn ,

OK - I will point out something that may be very relevant here - FormName.LastSubmit.ID only works if the user has submitted something in that session - it will not work if you "come back in". Also in Design mode, these things have a habit of being lost when you start changing code.

However is the whole issue the "Add Person" button is not working? In the animation, there was already a tracing record there - where did that come from?COVIDForm.jpg

Aside from all of this, you submit the ScreeningForm, and then progress to the screen above which contains the details of possible contacts, with the relevant information at the top (for input) in a form Contact_Tracing_Form, a gallery in the lower section showing all contacts already added and an Add Person button.

You now need the ID of the ScreeningForm to put in the MasterID of the table '[dbo].[COVID_Close_Contact_Form]'

I use this structure on thousands on related sub-lists and the easiest way of getting the ID is to simply put in a hidden card on the ScreenForm (I will call the text box on the card txtID here) and use (put this on the Add Person button

Set(lastID,Value(txtID.Text);
Set(LastContactID,Value(txtID.Text);

You then do not need any of the other logic - the ID will simply be on the form, whether it is a new one or you are editing it.

 

Please click Accept as solution if my post helped you solve your issue. This will help others find it more readily. It also closes the item. If the content was useful in other ways, please consider giving it Thumbs Up.

 

borowiakn
Helper I
Helper I

@WarrenBelz - Re: In the animation, there was already a tracing record there - where did that come from?

I believe I had already added this record to the gallery so that is why it was showing up.

 

This is the Filter that is being applied to the items in the gallery:

Gallery1.Items (CloseContact Screen)

Filter('[dbo].[COVID_Close_Contact_Form]',MasterID=BrowseGallery1_1.Selected.ID)

 I believe I need to somehow use an If and a Filter function on the Gallery or do a LookUp function. I need to be able to somehow say if this is a new form, then make the FormMode.New and set the MasterID = ContactLastID variable, otherwise FormMode.Edit and set MasterID = BrowseGallery1_1.Selected.ID, right?

If I put the txtID on the ScreenForm, what values am I putting there? Am I changing the default value or anything?

On the ScreenForm.DefaultMode

If(varMode = "Edit", FormMode.Edit,FormMode.New)

I know that there is probably a lot of code that can be removed from the OnVisible and OnSelect buttons happening earlier in the workflow, I currently am just not sure what I can safely remove without it breaking.

 

Users also need to not only be able to create a NewForm entry but if the Safety Managers need to make an edit to their record, they need to be able to go to a Search screen, perform a search, click on the record, and have it navigate them to the correct record and be able to make any edits to the record as well as save any of their edits. I will try and perform that workflow and upload it here.

@WarrenBelz - Here is the link to the workflow if a user is going to go in and make an edit to a person's record.


https://streamable.com/f5fnyn

The INTENDED behavior would be to ADD the person that I am entering to the Contact Tracing gallery, instead of it overwriting the previous entry. But it is at least adding the user to the Gallery, so I must be doing something halfway correct in terms of the Edit portion. 🙃 So, the effort is getting the NewForm working correctly if the user has JUST submitted a New ScreenForm in a session OR if they are editing the record and navigate to the Contact_Tracing screen and there hasn't been an entry, it needs to set the FormMode of the Contact_Tracing_Form = New, and then use the BrowseGallery1_1.Selected.ID and pass that value over to the MasterID column. And if the user is editing a record from the BrowseGallery1_1.Selected.ID, it needs to check to see if there are any rows (CountRows?) in the Gallery1 found on the Contact_Tracing screen and set the FormMode accordingly, right?

 

I apologize if I am getting any of this wrong and understand that I am probably making it much more complex than it needs to be. Nonetheless, I appreciate your help with this, I feel like I am FINALLY getting answers on how to do this the correct way. 

WarrenBelz
Most Valuable Professional
Most Valuable Professional

@borowiakn ,

Lets cover these one at a time - it is very important you understand the concept of this otherwise you will not solve it. Firstly this

Filter('[dbo].[COVID_Close_Contact_Form]',MasterID=BrowseGallery1_1.Selected.ID)

is flawed in New mode as it is showing records from the last item selected in the Gallery (which is not the ID of the one you just created and is why a current record appeared) and adds even more reason for setting the ID from somewhere else.
There is one thing I now realise I left out in relation to my process - where I set the new record ID. I have a global Variable varID, (you can use your lastID) which always reflects the ID of the current record being worked on. I now have a better idea for you than the hidden field (forget that one). On the OnSelect of BrowseGallery1_1

Set(lastID,ThisItem.ID)

On the OnSuccess of ScreenForm

Set(lastID,Self.LastSubmit.ID)

The Items of your Gallery

Filter('[dbo].[COVID_Close_Contact_Form]',MasterID=lastID)​

One other important thing here - you are using SubmitForm() for the Contact_Tracing_Form, so the value of lastID needs to be on the form.

 

  • Edit the form
  • Add the MasterID field
  • Set the Default to lastID
  • Hide the card.

It will then add the current ID in the field MasterID of your data table '[dbo].[COVID_Close_Contact_Form]' Once you have done all of this, you do not need any other logic - lastID will always be either what you have selected from the gallery or what you just created.

Please click Accept as solution if my post helped you solve your issue. This will help others find it more readily. It also closes the item. If the content was useful in other ways, please consider giving it Thumbs Up.

@WarrenBelz - I am tracking everything you are saying and I've taken the liberty to show you all of the OnSelect properties of the buttons found within the BrowseGallery1_1.

 

Here are the OnSelect functions happening in the BrowseGallery1_1:

doubleperson.png.
OnSelect

 

Select(Parent);
If(CountRows(Gallery1.AllItems)=0,Set(varMode,"New"),Set(varMode,"Edit"));
Navigate(Contact_Tracing,ScreenTransition.Fade);
Set(varButton, true);
Set(lastID,ThisItem.ID)

 

QuestionsForm_OnSelect_button_BrowseGallery1_1.png.OnSelect

 

Set(varMode,"Edit");
Set(lastID,ThisItem.ID);
If(Reason.Selected.ProductName = "Travel" || ReasonView.Text= "Travel", Navigate(Travel_Info),Navigate('Screening Questions'));

 

 

PersonalInfo.png.OnSelect

 

Select(Parent);
Set(varMode,"Edit");
Set(lastID,ThisItem.ID);
Navigate('Personal Info',ScreenTransition.Fade);
Set(varButton, true)

 

 

I am confused about your last bit about "adding the MasterID of my data table '[dbo].[COVID_Close_Contact_Form]' ".

I already have the MasterID on the form. The values at the top are just free-floating Text Input boxes that are then being referenced in the Contact_Tracing_Form. (See 
Hidden_Form_Contact_Tracing.png

 

Hopefully, this helps paint a clearer picture of what all is happening with my app. Much appreciated for your hasty replies and super helpful concept explanations! 

WarrenBelz
Most Valuable Professional
Most Valuable Professional

@borowiakn ,

I think we need to tackle one issue at a time - can we please put everything else including related code aside.

The fundamental thing I see is you need to create records in your table '[dbo].[COVID_Close_Contact_Form]' which has a field MasterID that matches the corresponding ID in your table '[dbo].[COVID_Screening_Form]'.

You simply need to always have the value of the second (ID) available so that you can either:-

  • Create new records in the close contact table with this value in the field Master ID
  • Display all records in a gallery from this table where the MasterID matches the ID of the current form record.

Firstly, is this all correct and have you also set the lastID on the OnSuccess of the main form?

borowiakn
Helper I
Helper I

@WarrenBelz - I applied all of the changes to my app. I performed UAT by PLAYING the app instead of performing the UAT in Edit Mode of the app with the new changes and here is what has happened so far:

1. New Form > Fill out fields in Personal Info Screen > Submit > ScreeningForm is submitted Successfully. ✔️
(Confirmed validation as I receive an email notifying me that it has been successfully submitted)

2. Continue onto the QuestionsForm > Fill out fields in the corresponding fields that DO NOT take me to the Contact Tracing Screen > Submit > QuestionsForm is submitted successfully. ✔️

 

3. Navigate to BrowseGallery1_1 > Selected previously entered record by selecting PersonalInfo.png&QuestionsForm_OnSelect_button_BrowseGallery1_1.png > Confirmed that Fields are showing previously entered values on both previously submitted QuestionsForm & ScreeningForm✔️

 

4. From the BrowseGallery1_1 > Selected previously entered record by selecting doubleperson.png  > Contact_Tracing Screen > Entered info in fields to create New Contact > Selected Add Person > Person was added to Gallery1.  ✔️

 

5. Went to the BrowseGallery1_1 again > Selected doubleperson.png > Contact_Tracing Screen > Gallery1 shows previously entered person > Entered info in fields to create New Contact > Selected Add Person > Person replaced previously entered person in Gallery1. ✖️

 

6. New Form > Fill out fields in Personal Info Screen > Submit > ScreeningForm is submitted Successfully ✔️ > Continue onto the QuestionsForm > Fill out fields in the corresponding fields that DO take me to the Contact Tracing Screen > Gallery1 is showing previously entered person in Gallery1 from 5. ✖️ 

 

6a. Entered info in fields to create New Contact > Selected Add Person > Person entered replaced entered person in Gallery1 > Selected Submit & Next Page > Entered information into final Quarantine Screen > Select Submit QuestionsForm is submitted > Navigate to BrowseGallery1_1 and Selected previously entered record by selecting doubleperson.png, Previous entry is not showing up > Select Back > Navigate to BrowseGallery1_1 and Selected previously entered record from 4 > Previous entry is showing up in Contact Tracing screen in the Gallery1.

 

I see multiple issues that are happening.

 

ISSUE: In 5, if the user tries to submit more than one person, the person is getting overwritten.
PROPOSED SOLUTION: I believe that is because I have code on the Contact_Tracing_Form.OnSuccess that needs to be removed, that is as follows:

Set(varMode , "New");ResetForm(Self)

 

In 6, it is pulling in the previously entered person in Gallery1 but not sure what I need to do in order to fix that. 

 

I know that I need to stay focused on just ONE thing, but I am unable to do that because there are multiple paths that lead you in different directions, so I am just trying to be thorough. 

 

Thank you @WarrenBelz again and looking forward to your reply.

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 (4,240)