cancel
Showing results for 
Search instead for 
Did you mean: 
Reply
tusharmehta
Helper II
Helper II

Error while filtering data between two data card (Combobox)

Hello Everyone, 

 

I am creating a power app using SharePoint list and I have two shares point lists: 

 

Profit_center_index

Profit_cent_id, 

Profit_cent_name - Display in the first data card 

 

Busineessunits_index

bu_profit_cent_id

bu_id,

bu_name - Display in the second data card 

 

The first data card (Combobox) allows the user to select the profit center name and base on the selection Profit_cent_id  must store as a value/variable to filter the second data card. 

 

In the second data card bu_profit_cent_id = Profit_cent_id  will be mapped and all the bu_name which are matching must be displayed on combobox. 

 

To store profit_cent_id as the value I have done a couple of tests: 

 

Filter in businessunits data card (items) but I got error near = sign

 

Error:

incompatible type for comparison. These types can't be compared: Number, Table 

 

Filter(
businessunits_index,
bu_profit_cent_id = profitcenter_index.profit_cent_id
).bu_name

 

The second option I used with the first data card onchange option 

 

Set(pid,
Filter(
profitcenter_index,
proft_cent_name = DataCardValue2.Selected.proft_cent_name
).profit_cent_id
)

 

Error:

incompatible type for comparison. These types can't be compared: Number, Table 

 

In both above options, I am getting the same error 

 

So can I know where is the problem and what I am doing wrong? 

 

Thanks, 

 

2 ACCEPTED SOLUTIONS

Accepted Solutions
RusselThomas
Community Champion
Community Champion

Hi @tusharmehta ,

Ok, so just to make sure I understand - you're saying your Sharepoint column types for profit_cent_name and businessunits_name in the ledger_ac_transaction list are already Lookup column types to those lists?

If so, then filtering the comboBoxes with the sources directly disregards the lookup function of the SharePoint Column - which is why trying to save a result from that is blank.   

 

My opinion: When it comes to building Power Apps from SharePoint lists, lookup columns are just headaches waiting to happen, so always go for simple column types and rely on Power Apps to control the user experience.  If you're stuck with them however, then hopefully this still helps you.

 

I should add, that unless you actually need the columns to be lookup columns in SharePoint, you can make your life a whole lot easier by removing them and instead recreating these two columns to be plain text columns.  It will save you a lot of headaches.  If for some reason you absolutely need them to be lookups, then forge ahead.  I'll answer in two parts - one for lookup columns, one for plain text columns.

 

I'd also suggest, before you continue, that you create a new form so we can start everything again from default and not have to worry about previous changes. 

 

#Part1: Keeping your lookup columns

So, if we're using lookup columns, we must use the results of a Choices() function to ensure what we save back to SharePoint matches up with what SharePoint expects for that column type.  This is why our Filter() function direct on the source is coming up Blank when we submit it.  It's not the bu_name we need to store, it's actually a reference to a record (usually just the ID of the record) that contains the value and SharePoint is just displaying the value from a specific column in that record based on your column configuration.  The Choices() function allows us to pick a record from a list and the control ensures the correct reference is stored back in SharePoint.  Therefore, we're stuck with it.

 

It is possible however to Filter those choices - but if our filter depends on another column, (like profit_cent_id), then this is a problem.  By default the Choices() from a lookup column only contain the actual column values, not the entire record - meaning profit_cent_id is not available to us to go perform filters on.  Initially, our Choices() table coming from

 

 

 

Choices([@ledger_ac_transaction].businessunits_name)

 

 

 

looks like this;

RusselThomas_0-1626854011376.png

We want to filter that based on the profit_cent_id associated with each bu - but it's not there for us to filter.  Luckily, if our bu_names are unique, we can use these values to go and fetch their corresponding profit_center_id values using AddColumns() and our own LookUp() function in PowerApps. 

This is very inefficient, as not only is SharePoint fetching the choices initially, but we're now also performing our own lookup for each Value to the same source list which makes every call redundant - so - highly inefficient, but doable.

So first, let's look at how we add the columns we need [just for reading, you don't need to set this anywhere just yet];

 

 

 

 

AddColumns(
 Choices([@ledger_ac_transaction].businessunits_name), 
 "pc_id", LookUp(businessunits_index, bu_name = Value, profit_center_id)
)

 

 

 

 

This should give us the following list for our bu_name Combo box

RusselThomas_1-1626854736573.png

Note: This will only work properly if your bu_names are unique in businessunits_index list.  

Now that we have some way to filter our choices, we can wrap the above function in a Filter function.  Set the buCombo Items: property to this;

 

 

 

Filter(
 AddColumns(
  Choices([@ledger_ac_transaction].businessunits_name), 
  "pc_id", LookUp(businessunits_index, bu_name = Value, profit_center_id)
 ),
 pc_id = pcCombo.Selected.ID
)

 

 

 

If you created a new form like I suggested up front, then the defaults for the card Update: property should remain.  Now if you submit the form, it should work?

 

#OPTIONAL Part2: using plain text columns

If you'd like to clean things up a bit, and if you expect people to only use your Power App to capture data into your list, you may want to use plain text columns to store the data instead of lookup columns. 

You can't convert lookup columns, so you have to create new columns to hold the data.

To be safe, I'd rather add two plain text columns with slightly different names, and once everything is working fine and you're happy with the results, then you can remove the lookup columns...so for now, let's assume your ledger_ac_transaction list now has two additional columns that are plain text - pc_textname and bu_textname.

 

With the new columns added, refresh your ledger_ac_transaction source in PowerApps by selecting data sources and then clicking the ... menu next to ledger_ac_transaction and click Refresh.

Then, add an Edit form, connect it to ledger_ac_transaction and set it's default mode to New.

Because they are plain text columns, the pc_textname and bu_textname DataCards will default to Text Input controls, and the card's Update: property will point to each Text Input's .Text output by default.  There are few ways to change this to suit our combo needs, but I'll opt for the cleanest - which means removing the Text Inputs, adding Combo's and changing the DataCard Update: values to point to the Combo's instead.

 

pc_textname DataCard

Select the Card, right click and select "Unlock"

Select the Text Input and copy it's name - we're going to reuse it

Delete the Text Input - ignore any errors for now.  Insert > Input > Combo box.

Ignore the "Select Data Source" popup and edit the Items: property in the formula bar to;

 

profit_center_index

 

Rename the ComboBox and paste the name of the TextInput (it should be something like DataCardValue with a number eg: DataCardValue23).  For reference in my formula here I'm going to use "pcCombo" as the name, just so it's easier to reference - wherever you see pcCombo in my formula just replace it with the control name you copied for the profit center combo box.

In the advanced properties of pcCombo, set the following fields;

  • DisplayFields: ["profit_cent_name"]
  • SearchFields: ["profit_cent_name"]

Select the data card, set the Update: property to;

 

pcCombo.Selected.profit_cent_name

 

If you copied the original name of the Text Input and renamed the combo then you shouldn't see any other errors.

If you still see errors on the card, they are likely references to the TextInput control that was there.  For example, the error text usually hangs underneath the Text Input with a Y: property of DataCardValueNumber.Y + DataCardValueNumber.Height.  If your text input is gone and your combo isn't called DataCardValueNumber, then you'll get errors.  

To fix these, either go and update the reference DataCardValueNumber to whatever you called your combo, or just name combo DataCardValueNumber and the errors will be fixed.

 

bu_textname DataCard

Select the Card, right click and select "Unlock"

Select the Text Input, copy it's name, then delete the control - ignore any errors for now. 

Insert > Input > Combo box.

Ignore the "Select Data Source" popup and edit the Items: property in the formula bar to;

 

Filter(
businessunits_index,
bu_profit_cent_id = pcCombo.Selected.profit_cent_id
)

 

Rename the ComboBox and paste in your copied name from the Text Input - Mine will be called "buCombo" for reference, just replace this with your name wherever you see it.

In the advanced properties of pcCombo, set the following fields;

  • DisplayFields: ["bu_name"]
  • SearchFields: ["bu_name"]

Select the data card, set the Update: property to;

 

buCombo.Selected.bu_name

 

That's it.  Hope this helps you!

RT

 

View solution in original post

Hello Russel, 

 

I am back with the result. 

 

Option one was not displaying the second field on Combobox was not displaying (pc_id) even it was not an error so I had tried in the new screen same thing but had no success so finally I had tried option 2. 

 

Couple of things I had noticed while testing option 2: 

 

  • With original lookup, fields were with new single text field data was not saving so I had removed all the lookup fields and submitted the data it starts working with option 2. I don't know is it normal or maybe because of some system setting it is happening. 
  • I am getting a yellow warning sign with both Combobox (delegation warning the search part of this formula might not work correctly on large data sets)

     

    tusharmehta_0-1626880846736.png

     

    Other than the above notes everything is working fine. 

Thank you very much. 

 

 

View solution in original post

10 REPLIES 10
RusselThomas
Community Champion
Community Champion

Hi @tusharmehta ,

It looks like you're trying to be explicit in showing only the specific field you want when you actually just need the record sets matched through the field lookup - the control will allow you to select the field you want to display with the result.  

I'm not sure you need to set a variable for this, so maybe start without it and only set it if you need it for something else?  Also, are you wanting to show filtered results from the first table or the second - because your formulas above do both...?

Assuming you want to show results from "Businessunits index" filtered by bu_profit_cent_id which matches a corresponding Profit_cent_id lookup on "Profit center index", then on your second dropdown/combo Items: property;

Filter(
businessunits_index,
bu_profit_cent_id = DataCardValue2.Selected.profit_cent_id
)

With the records filtered, you can then set the Value of the field to display on the combo properties instead of trying to specify it in the formula.

Hope this helps,

RT

Thanks, RusselThomas, 

 

I had done and I was able to filter the data and it is working as expected.  

 

While submitting the form profit center value is getting saved but in the second value in which we used to filter, the SharePoint list value is blank. 

 

The difference which I have found: 

 

Before writing filter on items paramters (data is getting saved)

Choices([@ledger_ac_transaction].businessunits_name)

 

After we replace choices with filter (Data is not getting saved and value is blank).

 

Does this because we replace filters and that had converted value and it is not getting saved? 

 

Please let me know if that is correct than what could be the correct statement for filter data as well save data to Sharepoint List as well. 

 

RusselThomas
Community Champion
Community Champion

Hi @tusharmehta ,

So we initially had two lists - Profit_center_index and Busineessunits_index

The control however seems to have been getting it's list of Items: from a choice column on another list - ledger_ac_transaction.

 

Choices([@ledger_ac_transaction].businessunits_name)

 

This means that in SharePoint there is a choice column which uses a SharePoint defined list of values to capture data into that column.  The Items: list is therefore coming from those items defined for that choice column.

Is that your intent?  I mean, is there a problem with the list of choices in that column that you want to filter from somewhere else?

Or do you want to filter the list of choices that are there?

If so, is there a link between ledger_ac_transaction and Profit_center_index, like there is  between Profit_center_index and Busineessunits_index?

At the end of the day, the Update: property of the card determines what get's saved back to your source, so if you were using a dropdown with a single selection for the second list of items then it should read something like this;

secondDropdown.Selected

If you are managing the list of items using the choice column in SharePoint, then you may want to rather filter that.  If you're getting your list data from another source and try and save something that doesn't currently exist in the Choices of the SharePoint column - you will get an error.

Kind regards,

RT

Hello Russel, 

 

In profit_center_index I have following fields: 

  • profit_cent_id
  • profit_cent_name
  • profit_cent_currency 

 

In businessunits_index I have the following fields

  • bu_id,
  • bu_name,
  • bu_profit_cent_id,      (one profit center has more than one business units) 
  • bu_region 

Above mentioned both lists is having a common field (bu_profit_cent_id - profit_cent_id)

 

Third ledger_ac_transaction I have the following fields: 

  • account_description
  • date
  • profit_cent_name (lookup) (This will be populated when the user enter a new entry)
  • businessunits_name (lookup) (This will be populated when the user enter a new entry)
  • there are more fields like approver status, approver name, approver date, etc. 

The requirements: 

 

When the user start a new entry he will select the profit center from the first Combobox and base on the selection second Combobox (business units list will be populated and the user will select one from the list and submtit the entry. 

 

While submit form: 

in ledger_ac_transaction I want to store all the values and in this list profit_cent_name and business_name will be from two Combobox. 

 

I may be taking more than require time because I am new to SharePoint and getting used to it.

 

 

 

RusselThomas
Community Champion
Community Champion

Hi @tusharmehta ,

Ok, so just to make sure I understand - you're saying your Sharepoint column types for profit_cent_name and businessunits_name in the ledger_ac_transaction list are already Lookup column types to those lists?

If so, then filtering the comboBoxes with the sources directly disregards the lookup function of the SharePoint Column - which is why trying to save a result from that is blank.   

 

My opinion: When it comes to building Power Apps from SharePoint lists, lookup columns are just headaches waiting to happen, so always go for simple column types and rely on Power Apps to control the user experience.  If you're stuck with them however, then hopefully this still helps you.

 

I should add, that unless you actually need the columns to be lookup columns in SharePoint, you can make your life a whole lot easier by removing them and instead recreating these two columns to be plain text columns.  It will save you a lot of headaches.  If for some reason you absolutely need them to be lookups, then forge ahead.  I'll answer in two parts - one for lookup columns, one for plain text columns.

 

I'd also suggest, before you continue, that you create a new form so we can start everything again from default and not have to worry about previous changes. 

 

#Part1: Keeping your lookup columns

So, if we're using lookup columns, we must use the results of a Choices() function to ensure what we save back to SharePoint matches up with what SharePoint expects for that column type.  This is why our Filter() function direct on the source is coming up Blank when we submit it.  It's not the bu_name we need to store, it's actually a reference to a record (usually just the ID of the record) that contains the value and SharePoint is just displaying the value from a specific column in that record based on your column configuration.  The Choices() function allows us to pick a record from a list and the control ensures the correct reference is stored back in SharePoint.  Therefore, we're stuck with it.

 

It is possible however to Filter those choices - but if our filter depends on another column, (like profit_cent_id), then this is a problem.  By default the Choices() from a lookup column only contain the actual column values, not the entire record - meaning profit_cent_id is not available to us to go perform filters on.  Initially, our Choices() table coming from

 

 

 

Choices([@ledger_ac_transaction].businessunits_name)

 

 

 

looks like this;

RusselThomas_0-1626854011376.png

We want to filter that based on the profit_cent_id associated with each bu - but it's not there for us to filter.  Luckily, if our bu_names are unique, we can use these values to go and fetch their corresponding profit_center_id values using AddColumns() and our own LookUp() function in PowerApps. 

This is very inefficient, as not only is SharePoint fetching the choices initially, but we're now also performing our own lookup for each Value to the same source list which makes every call redundant - so - highly inefficient, but doable.

So first, let's look at how we add the columns we need [just for reading, you don't need to set this anywhere just yet];

 

 

 

 

AddColumns(
 Choices([@ledger_ac_transaction].businessunits_name), 
 "pc_id", LookUp(businessunits_index, bu_name = Value, profit_center_id)
)

 

 

 

 

This should give us the following list for our bu_name Combo box

RusselThomas_1-1626854736573.png

Note: This will only work properly if your bu_names are unique in businessunits_index list.  

Now that we have some way to filter our choices, we can wrap the above function in a Filter function.  Set the buCombo Items: property to this;

 

 

 

Filter(
 AddColumns(
  Choices([@ledger_ac_transaction].businessunits_name), 
  "pc_id", LookUp(businessunits_index, bu_name = Value, profit_center_id)
 ),
 pc_id = pcCombo.Selected.ID
)

 

 

 

If you created a new form like I suggested up front, then the defaults for the card Update: property should remain.  Now if you submit the form, it should work?

 

#OPTIONAL Part2: using plain text columns

If you'd like to clean things up a bit, and if you expect people to only use your Power App to capture data into your list, you may want to use plain text columns to store the data instead of lookup columns. 

You can't convert lookup columns, so you have to create new columns to hold the data.

To be safe, I'd rather add two plain text columns with slightly different names, and once everything is working fine and you're happy with the results, then you can remove the lookup columns...so for now, let's assume your ledger_ac_transaction list now has two additional columns that are plain text - pc_textname and bu_textname.

 

With the new columns added, refresh your ledger_ac_transaction source in PowerApps by selecting data sources and then clicking the ... menu next to ledger_ac_transaction and click Refresh.

Then, add an Edit form, connect it to ledger_ac_transaction and set it's default mode to New.

Because they are plain text columns, the pc_textname and bu_textname DataCards will default to Text Input controls, and the card's Update: property will point to each Text Input's .Text output by default.  There are few ways to change this to suit our combo needs, but I'll opt for the cleanest - which means removing the Text Inputs, adding Combo's and changing the DataCard Update: values to point to the Combo's instead.

 

pc_textname DataCard

Select the Card, right click and select "Unlock"

Select the Text Input and copy it's name - we're going to reuse it

Delete the Text Input - ignore any errors for now.  Insert > Input > Combo box.

Ignore the "Select Data Source" popup and edit the Items: property in the formula bar to;

 

profit_center_index

 

Rename the ComboBox and paste the name of the TextInput (it should be something like DataCardValue with a number eg: DataCardValue23).  For reference in my formula here I'm going to use "pcCombo" as the name, just so it's easier to reference - wherever you see pcCombo in my formula just replace it with the control name you copied for the profit center combo box.

In the advanced properties of pcCombo, set the following fields;

  • DisplayFields: ["profit_cent_name"]
  • SearchFields: ["profit_cent_name"]

Select the data card, set the Update: property to;

 

pcCombo.Selected.profit_cent_name

 

If you copied the original name of the Text Input and renamed the combo then you shouldn't see any other errors.

If you still see errors on the card, they are likely references to the TextInput control that was there.  For example, the error text usually hangs underneath the Text Input with a Y: property of DataCardValueNumber.Y + DataCardValueNumber.Height.  If your text input is gone and your combo isn't called DataCardValueNumber, then you'll get errors.  

To fix these, either go and update the reference DataCardValueNumber to whatever you called your combo, or just name combo DataCardValueNumber and the errors will be fixed.

 

bu_textname DataCard

Select the Card, right click and select "Unlock"

Select the Text Input, copy it's name, then delete the control - ignore any errors for now. 

Insert > Input > Combo box.

Ignore the "Select Data Source" popup and edit the Items: property in the formula bar to;

 

Filter(
businessunits_index,
bu_profit_cent_id = pcCombo.Selected.profit_cent_id
)

 

Rename the ComboBox and paste in your copied name from the Text Input - Mine will be called "buCombo" for reference, just replace this with your name wherever you see it.

In the advanced properties of pcCombo, set the following fields;

  • DisplayFields: ["bu_name"]
  • SearchFields: ["bu_name"]

Select the data card, set the Update: property to;

 

buCombo.Selected.bu_name

 

That's it.  Hope this helps you!

RT

 

Highly Appreciated Russel Thomas for providing an explanation with options. 

 

Especially I am new so it will be this will motivate me and this notes will be useful for future referance as well. 

 

After reading the details it looks that this will work for me but let me go slowly and read the instruction and perform the test.

 

Once again, Russel, I am very happy to read the responses they are motivating and pushing me to work harder and build one working application demo and recommend products to use in our daily office activity.   

 

Hopefully, after following step-by-step instructions I will be able to build a demo without any issues, and if anything I will get back to you with my query. 

 

God Bless you, Russel. 

 

Hello Russel, 

 

I am back with the result. 

 

Option one was not displaying the second field on Combobox was not displaying (pc_id) even it was not an error so I had tried in the new screen same thing but had no success so finally I had tried option 2. 

 

Couple of things I had noticed while testing option 2: 

 

  • With original lookup, fields were with new single text field data was not saving so I had removed all the lookup fields and submitted the data it starts working with option 2. I don't know is it normal or maybe because of some system setting it is happening. 
  • I am getting a yellow warning sign with both Combobox (delegation warning the search part of this formula might not work correctly on large data sets)

     

    tusharmehta_0-1626880846736.png

     

    Other than the above notes everything is working fine. 

Thank you very much. 

 

 

RusselThomas
Community Champion
Community Champion

Hi @tusharmehta ,

Delegation warnings appear when we use functions in our filters that the source can't understand.  In these instances, the query cannot be delegated to SharePoint - so SharePoint will instead just return the first 500 rows of data, then PowerApps will apply the query on that set of data.

If your tables have more than 500 rows, then this can be a problem. 

If your tables don't have more than 500 rows (and if they won't ever have more than 500 rows) then you can ignore the warnings.

If they do have more than 500 rows, or you suspect they may grow beyond 500 sometime in the future, then you should see if you can reconstruct your filters in such a way that they support delegation.

 

That said - you will always get warnings with Combo boxes connecting to SharePoint without adding any fancy filter functions because combo boxes have a built-in "Find" feature that actually uses the Search() function in the background.  The Search() function is not delegable with SharePoint (or anything else at this point) - so as soon as you connect a combo to SharePoint you'll see the yellow warning pop up.

Because it's built in, you either have to switch IsSearchable: off to remove the warning, use a collection instead of a source like SharePoint, or just ignore it.

 

May I ask, how many rows exist in your profit_center and business_unit lists?

Kind regards,

RT

the number is less than 500. I will stop the search option. 

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 (6,673)