cancel
Showing results for 
Search instead for 
Did you mean: 
Reply
Anonymous
Not applicable

Excel sheet from OneDrive: Permissions, date format & users from office365

Hello all,

Some might remember that I've been working an app with database source: SharePoint list. However, due to Tableau having problems connecting to SP, am currently trying with OneDrive+Excel sheet. Thus having an Excel sheet with different fields, two of them being date. In the spreadsheet, the dates are formatted, inside Excel, as day/month/year; however, in PowerApps it shows both in detail view of the entry & adding new one view, as dd/mm/yyyy plus hour and minutes.

dateFormat.png

The question is: is there any way to 'remove' the option to add hour/minute AND remove it from the detail view?

 

--

 

The second question is regarding user/userlist from office365. In SharePoint list I could add a column defined as person/group and it would allow me to type person name/email and it would suggest the one I'm looking for, able to select it. As far I know, this in Excel is impossible to do. Therefore, it is written manually in the spreadsheet (the examples, at least).

So, if I want to have the same option I have in my app that uses SP List as datasource, what can I do?

  • Should I have a second table with all the name and emails of the people in the workplace?
  • Or can PowerApps 'refer' so to speak, to the place it is "hosted", like, (business) OneDrive and from it get the users of the place?

 

--

 

The last part of the topic is regarding the permissions needed for the users when you share/publish the app. With SharePoint as datasource, I had to add them to the SP List as members in order to be able to edit, add entries, remove them, and so on. In OneDrive/Excel file, how would it work? Or is it "automatic" when you share it to people (the app)? Meaning, I create app with Excel table as datasource, I make the app, and then publish it. When I email link /add people to app, they can, without any change, add/edit/view the app content?

 

Any help would be greatly appreciated.

 

Thanks in advance,

6 ACCEPTED SOLUTIONS

Accepted Solutions
RandyHayes
Super User
Super User

@AnonymousSo...lot's of questions in this one going on!!

 

First - The Date with Times.  You can delete the time portion from your Form.  You will need to unlock the DataCard and then either make the HourValue, MinuteValue and Separator not visible, or remove the MinuteValue and HourValue controls.  Keep in mind if you remove, you will need to adjust the values of the other items in the DataCard as they rely on those for some formulas. Just keep clicking on the red x's and fix.

(By the way...the minute control is one of my favorites, only because I will throw a form with one up sometimes JUST to get its items list...I hate typing them all out - look at it, you'll see what I mean)

 

Second:

Because you are a PowerApp that is on the Office 365 platform, your app will have access to the full Office365Users list out there in order to collect and/or feed values and lookups in your data.

 

Third:

Currently, using an Excel file from OneDrive will have the Excel file being in your OneDrive.  In order for others to access it, you will need to not only share the App with them, but also share the Excel file with them through your OneDrive.

 

Hope this fuels some thought.

_____________________________________________________________________________________
Digging it? - Click on the Thumbs Up below. Solved your problem? - Click on Accept as Solution below. Others seeking the same answers will be happy you did.
NOTE: My normal response times will be Mon to Fri from 1 PM to 10 PM UTC (and lots of other times too!)
Check out my PowerApps Videos too! And, follow me on Twitter @RandyHayes

Really want to show your appreciation? Buy Me A Cup Of Coffee!

View solution in original post

@Anonymous 

 

Q1:
Will look it up. In the edit/new one I'll put them in false (visible) then, the 'detail' view should have it too, no? Also, between not visible and deleting, better not visible or doesn't matter much?

Yes, I would just make them not visible in all places you don't care about them.  

 

Q2:

How do I make a search/combobox/list that lets me search for users? When I used it on Sharepoint didn't have problems since the column in SP was configured for 'users' in the organization thus, I suspect, the setting/configuration was exported to PowerApps. But, starting from PA, well, no clue there. Any help would be appreciated.

Try this, in your App, add a new screen and choose Email Screen.  Take a look at the logic in that screen.  This will have very good examples of how to implement a people search for your Office365 users.

 

Q3:

When sharing the Excel spreadsheet though, the person has to have permissions to edit or just view? If I want the person to be able to add new entries to the list via the app.


If you want them to add new entries - that would be edit.  So, they would need the permission to view and edit.

_____________________________________________________________________________________
Digging it? - Click on the Thumbs Up below. Solved your problem? - Click on Accept as Solution below. Others seeking the same answers will be happy you did.
NOTE: My normal response times will be Mon to Fri from 1 PM to 10 PM UTC (and lots of other times too!)
Check out my PowerApps Videos too! And, follow me on Twitter @RandyHayes

Really want to show your appreciation? Buy Me A Cup Of Coffee!

View solution in original post

@Anonymous  So, yes, this is all possible.  However you are entering the fringes of built-in functionality and crossing over into the "development" of that capability.  This just means that you will have to craft out how you want to do this and then choose the right controls and the right actions to make it happen.

I did an App recently where we needed to dynamically search lists while the user typed and then if any one matched, fill in fields from many different sources.  If not, then automatically put them into entry mode.  If multiple then have then select.  

All very doable, but it took a coordination of controls to make it happen.  Nothing out of the box would solve that.

 

You might be facing some of those same situations as you move forward with the design.

 

For some of the specifics on this, you are dealing with a text field in Excel.  There is no concept of a person field there like SharePoint.  So, name, email, whatever...it's just text.  If you're going to do lookups to the Office 365 users, you'll need to use the information from that field or from text input.  Either way, you can do so by SearchUsers or you can specifically get information if it is an email address.

On that note - I would almost always opt for storing the user information as email rather than display name.  Email is unique to each user - names are not always unique.

 

_____________________________________________________________________________________
Digging it? - Click on the Thumbs Up below. Solved your problem? - Click on Accept as Solution below. Others seeking the same answers will be happy you did.
NOTE: My normal response times will be Mon to Fri from 1 PM to 10 PM UTC (and lots of other times too!)
Check out my PowerApps Videos too! And, follow me on Twitter @RandyHayes

Really want to show your appreciation? Buy Me A Cup Of Coffee!

View solution in original post

@Anonymousso are you dealing with case?  If so, you might want to revise as follows:

Set(correoUsuario,Lower(User().Email))

Distinct(Filter(DBTable, correoUsuario=Lower('Correo encargado')),'Nombre Proyecto')

SortByColumns(Filter(DBTable,'Nombre Proyecto'=listaProyectos.Selected.Value && correoUsuario=Lower('Correo encargado')),"Fecha_x0020_Termino",If(SortDescending1,Descending,Ascending))

If that's not working, then try to throw a label up and set the Text to correoUsario then look at your source data and make sure you are comparing EXACT instances. 

_____________________________________________________________________________________
Digging it? - Click on the Thumbs Up below. Solved your problem? - Click on Accept as Solution below. Others seeking the same answers will be happy you did.
NOTE: My normal response times will be Mon to Fri from 1 PM to 10 PM UTC (and lots of other times too!)
Check out my PowerApps Videos too! And, follow me on Twitter @RandyHayes

Really want to show your appreciation? Buy Me A Cup Of Coffee!

View solution in original post

@Anonymous  ah yes...the ol' gotta save and get out and back in routine!  

When things don't seem quite right, I usually take these steps:

1) Refresh data source

2) Throw a label on the screen and set the text to something I know is a correct result.

3) Retype the variable or other value in the place that it seems to fail (yes, believe it or not, this happens often - same exact thing, one fails one works).

4) Am I relying on something that has to fire in an OnVisible or OnStart? Go there and fire it off.

5) Save

6) Exit

7) Edit again.

 

The "View online" should work for you...I would be suspicious. 

_____________________________________________________________________________________
Digging it? - Click on the Thumbs Up below. Solved your problem? - Click on Accept as Solution below. Others seeking the same answers will be happy you did.
NOTE: My normal response times will be Mon to Fri from 1 PM to 10 PM UTC (and lots of other times too!)
Check out my PowerApps Videos too! And, follow me on Twitter @RandyHayes

Really want to show your appreciation? Buy Me A Cup Of Coffee!

View solution in original post

@Anonymous  yes, you can just set the text format however you like.

Go into the Text property of that Label control in your Gallery and set it to the following:

    Text(ThisItem.yourFieldName, "dd/mm/yyyy")

 

That should give you the format you need.

_____________________________________________________________________________________
Digging it? - Click on the Thumbs Up below. Solved your problem? - Click on Accept as Solution below. Others seeking the same answers will be happy you did.
NOTE: My normal response times will be Mon to Fri from 1 PM to 10 PM UTC (and lots of other times too!)
Check out my PowerApps Videos too! And, follow me on Twitter @RandyHayes

Really want to show your appreciation? Buy Me A Cup Of Coffee!

View solution in original post

24 REPLIES 24
RandyHayes
Super User
Super User

@AnonymousSo...lot's of questions in this one going on!!

 

First - The Date with Times.  You can delete the time portion from your Form.  You will need to unlock the DataCard and then either make the HourValue, MinuteValue and Separator not visible, or remove the MinuteValue and HourValue controls.  Keep in mind if you remove, you will need to adjust the values of the other items in the DataCard as they rely on those for some formulas. Just keep clicking on the red x's and fix.

(By the way...the minute control is one of my favorites, only because I will throw a form with one up sometimes JUST to get its items list...I hate typing them all out - look at it, you'll see what I mean)

 

Second:

Because you are a PowerApp that is on the Office 365 platform, your app will have access to the full Office365Users list out there in order to collect and/or feed values and lookups in your data.

 

Third:

Currently, using an Excel file from OneDrive will have the Excel file being in your OneDrive.  In order for others to access it, you will need to not only share the App with them, but also share the Excel file with them through your OneDrive.

 

Hope this fuels some thought.

_____________________________________________________________________________________
Digging it? - Click on the Thumbs Up below. Solved your problem? - Click on Accept as Solution below. Others seeking the same answers will be happy you did.
NOTE: My normal response times will be Mon to Fri from 1 PM to 10 PM UTC (and lots of other times too!)
Check out my PowerApps Videos too! And, follow me on Twitter @RandyHayes

Really want to show your appreciation? Buy Me A Cup Of Coffee!
Anonymous
Not applicable

@RandyHayes 

Hey there again, yeah, well, like I said the first time, totally new user of PowerApps 😄 Anyway, on to topic:

 

Q1:
Will look it up. In the edit/new one I'll put them in false (visible) then, the 'detail' view should have it too, no? Also, between not visible and deleting, better not visible or doesn't matter much?

 

Q2:

How do I make a search/combobox/list that lets me search for users? When I used it on Sharepoint didn't have problems since the column in SP was configured for 'users' in the organization thus, I suspect, the setting/configuration was exported to PowerApps. But, starting from PA, well, no clue there. Any help would be appreciated.

 

Q3:

When sharing the Excel spreadsheet though, the person has to have permissions to edit or just view? If I want the person to be able to add new entries to the list via the app.

@Anonymous 

 

Q1:
Will look it up. In the edit/new one I'll put them in false (visible) then, the 'detail' view should have it too, no? Also, between not visible and deleting, better not visible or doesn't matter much?

Yes, I would just make them not visible in all places you don't care about them.  

 

Q2:

How do I make a search/combobox/list that lets me search for users? When I used it on Sharepoint didn't have problems since the column in SP was configured for 'users' in the organization thus, I suspect, the setting/configuration was exported to PowerApps. But, starting from PA, well, no clue there. Any help would be appreciated.

Try this, in your App, add a new screen and choose Email Screen.  Take a look at the logic in that screen.  This will have very good examples of how to implement a people search for your Office365 users.

 

Q3:

When sharing the Excel spreadsheet though, the person has to have permissions to edit or just view? If I want the person to be able to add new entries to the list via the app.


If you want them to add new entries - that would be edit.  So, they would need the permission to view and edit.

_____________________________________________________________________________________
Digging it? - Click on the Thumbs Up below. Solved your problem? - Click on Accept as Solution below. Others seeking the same answers will be happy you did.
NOTE: My normal response times will be Mon to Fri from 1 PM to 10 PM UTC (and lots of other times too!)
Check out my PowerApps Videos too! And, follow me on Twitter @RandyHayes

Really want to show your appreciation? Buy Me A Cup Of Coffee!
Anonymous
Not applicable

@RandyHayes 

Q1:

Alright, thank you (:

 

Q2:

mailList.png

I did the test with one of those screens, the code is, however, in a Item property of a gallery. However, the field I want to have people input user/mail, is in a Datacard inside a Form. I tried the formula from mail above, changing "textSearchBox" for "datacardvalue9" (the corresponding one), however, the error it shows is: "property expects text values, but this rules produces incompatible Table values".

Addendum: the PowerApps version I am workin on the Excel App (different enviroment) has the , instead of ; and "UsuariosdeOffice365" gets replaced for "Office365Users", as additional info.

Addendum2: the code I tried in the datacard inside the form is:

If(!IsBlank(Trim(DataCardValue9.Text)), Office365Users.SearchUser({searchTerm: Trim(DataCardValue9.Text), top:15}))

Q3:
Neato, did a test to check it, and without invite, can't see data. After invite, all peachy 😛

 

 

 

EDIT/ADDENDUM:

I tried with adding a combobox like seen in (https://powerusers.microsoft.com/t5/General-Discussion/Edit-view-add-field-Select-or-add-new-one/td-...), however I think the problem with following that, would be the AllowedValues, no? Since, for example, my AllowedValues in this case would be:

RenameColumns(Distinct(Table1,Responsable),"Result","Value")

By reusing same code. HOWEVER, I don't need to select distinct from the 'responsable' column in Excel (even if that is the camp that will be filled), thus, I'd remove it, but it gives error: "Column 'result' does not exist'.

Any help on this?

@Anonymous  looks like we're just down to Q2 now...

 

So, for the allowed values - If you don't need them, then you need to change the control type to just a standard dropdown.  You might recall in the linked posting, when we added the field to the Form, we had to change the control type to "allowed values" - that created the AllowedValues property for us to us.  If you don't need that, then when you add the field to the Form, just have its type as a dropdown.

 

However, I'm not entirely clear on what you will be "dropping down".  Did you want that dropdown to have everyone in it?  That might not be practical.  

In the Email screen you added, you will see that the mechanics of it are that they have an input for the name and then fill a gallery with potential names from a SearchUser call.  There is currently no way to just get all the names in O365 to populate a list (at least not with just a call to a function).  So, you have to provide a way to search them and then selected them and then fill them in.  As you see in the Email screen, they do that and then add them to a collection as you select them.  

Depending on your purpose on the DropDown, you could do something similar and then fill in the value for the DropDown.

BUT...again, not understanding the DropDown or where the real value comes from or what it is.  As I understand it, it is a column in an Excel spreadsheet, and thus it is just a text column.  So, having a dropdown might not be what you want.  

_____________________________________________________________________________________
Digging it? - Click on the Thumbs Up below. Solved your problem? - Click on Accept as Solution below. Others seeking the same answers will be happy you did.
NOTE: My normal response times will be Mon to Fri from 1 PM to 10 PM UTC (and lots of other times too!)
Check out my PowerApps Videos too! And, follow me on Twitter @RandyHayes

Really want to show your appreciation? Buy Me A Cup Of Coffee!
Anonymous
Not applicable

@RandyHayes 

The ideal thing would be that the box, when writting the name of the person, it would suggest which one and be able to select it, not having a dropdown with many, many users. And also, if possible, to be able to input more than one person.

For example, I'd have:

- Name project

- Name task

- Date start

- Date end

- In charge of

Of those, all are just text in Excel, and date have well, date format. However, when the person in the form can edit an entry or add a new one, of the previous columns, project would be like the one in the linked thread that we resolved last week; task just an input text -standard, so to speak-, and finally, in the 'in charge of' be able to, as said at start of the reply, start writing name and suggest which one, and select it, thus having users/email on it. Kinda like:

mailList2.png

(which is from the email screen, but using as example).

 

Is this even possible on a form? If not, a way to "select" or "use" the values of a mail gallery (myContacts? I think it was) and use those values to fill that datacard?

 

As an extra question, text from Excel, either username or mail, is it possible for PowerApps to recognize it as such?

Anonymous
Not applicable

@RandyHayes 

Add:
Main reason I want this is I later want to be able to filter by users, like I did with the app I have with SharePoint list. Therefore, having an item/entry linked to user(s) will allow me to filter by users, so "user1" will only see the tasks "user1" has.

 

EDIT:
Have a random idea which I am not sure it is possible.

What if "OnSelect" of the "in charge of" lead to the "mail screen", where user can select persons there. And after that, the user clicks a "ticket" for being 'done' and it takes to the previous screen in which the box with "responsible" now has the selected persons name in it.

To try to clarify a bit:

- Select "responsable" box --> takes you to "email default view" and then user selects person responsible of task.

- Selected people are "stored" somewhere?

- Click done and takes back to edit/new screen, where the 'responsable' box now has the values of the 'stored' data

 

That way, later on, if I wanted to filter by username I could make filter of "User().FullName" and some string function of "contains this string", comparing both and showing only those who do contain the string, since it is an Excel file, would be string only

 

EDIT2:
Or, perhaps I'm trying too hard due to Excel scope and instead for later filter use, that box should have the user input the emails of the people responsible of, manually, and then later on the filter of the gallery, well, filter according to the mail column and compare it with User().Email?

 

@Anonymous  So, yes, this is all possible.  However you are entering the fringes of built-in functionality and crossing over into the "development" of that capability.  This just means that you will have to craft out how you want to do this and then choose the right controls and the right actions to make it happen.

I did an App recently where we needed to dynamically search lists while the user typed and then if any one matched, fill in fields from many different sources.  If not, then automatically put them into entry mode.  If multiple then have then select.  

All very doable, but it took a coordination of controls to make it happen.  Nothing out of the box would solve that.

 

You might be facing some of those same situations as you move forward with the design.

 

For some of the specifics on this, you are dealing with a text field in Excel.  There is no concept of a person field there like SharePoint.  So, name, email, whatever...it's just text.  If you're going to do lookups to the Office 365 users, you'll need to use the information from that field or from text input.  Either way, you can do so by SearchUsers or you can specifically get information if it is an email address.

On that note - I would almost always opt for storing the user information as email rather than display name.  Email is unique to each user - names are not always unique.

 

_____________________________________________________________________________________
Digging it? - Click on the Thumbs Up below. Solved your problem? - Click on Accept as Solution below. Others seeking the same answers will be happy you did.
NOTE: My normal response times will be Mon to Fri from 1 PM to 10 PM UTC (and lots of other times too!)
Check out my PowerApps Videos too! And, follow me on Twitter @RandyHayes

Really want to show your appreciation? Buy Me A Cup Of Coffee!
Anonymous
Not applicable

@RandyHayes 

Hm, I think I am by far too inexperienced/not enough background to start building custom 'stuff' in PowerApps, so I think I'll go by input mail.

For that case, user manually enters mail in the field, the filter/lookup/search would go on the showcolumn part of the gallery no? Like, in previous help you have, well, helped me with.

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 (3,555)