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

April 2024 Commnuity Newsletter

We're pleased to share the April Community Newsletter, where we highlight the latest news, product releases, upcoming events, and the amazing work of our outstanding Community members.   If you're new to the Community, please make sure to follow the latest News & Announcements and check out the Community on LinkedIn as well! It's the best way to stay up-to-date with all the news from across Microsoft Power Platform and beyond.    COMMUNITY HIGHLIGHTS   Check out the most active community members of the last month! These hardworking members are posting regularly, answering questions, kudos, and providing top solutions in their communities. We are so thankful for each of you--keep up the great work! If you hope to see your name here next month, follow these awesome community members to see what they do!   Power AppsPower AutomateCopilot StudioPower PagesWarrenBelzDeenujialexander2523ragavanrajanLaurensMManishSolankiMattJimisonLucas001AmikcapuanodanilostephenrobertOliverRodriguestimlAndrewJManikandanSFubarmmbr1606VishnuReddy1997theMacResolutionsVishalJhaveriVictorIvanidzejsrandhawahagrua33ikExpiscornovusFGuerrero1PowerAddictgulshankhuranaANBExpiscornovusprathyooSpongYeNived_Nambiardeeksha15795apangelesGochixgrantjenkinsvasu24Mfon   LATEST NEWS Business Applications Launch Event - On Demand In case you missed the Business Applications Launch Event, you can now catch up on all the announcements and watch the entire event on-demand inside Charles Lamanna's latest cloud blog.   This is your one stop shop for all the latest Copilot features across Power Platform and #Dynamics365, including first-hand looks at how companies such as Lenovo, Sonepar, Ford Motor Company, Omnicom and more are using these new capabilities in transformative ways. Click the image below to watch today!     Power Platform Community Conference 2024 is here! It's time to look forward to the next installment of the Power Platform Community Conference, which takes place this year on 18-20th September 2024 at the MGM Grand in Las Vegas!   Come and be inspired by Microsoft senior thought leaders and the engineers behind the #PowerPlatform, with Charles Lamanna, Sangya Singh, Ryan Cunningham, Kim Manis, Nirav Shah, Omar Aftab and Leon Welicki already confirmed to speak. You'll also be able to learn from industry experts and Microsoft MVPs who are dedicated to bridging the gap between humanity and technology. These include the likes of Lisa Crosbie, Victor Dantas, Kristine Kolodziejski, David Yack, Daniel Christian, Miguel Félix, and Mats Necker, with many more to be announced over the coming weeks.   Click here to watch our brand-new sizzle reel for #PPCC24 or click the image below to find out more about registration. See you in Vegas!     Power Up Program Announces New Video-Based Learning Hear from Principal Program Manager, Dimpi Gandhi, to discover the latest enhancements to the Microsoft #PowerUpProgram. These include a new accelerated video-based curriculum crafted with the expertise of Microsoft MVPs, Rory Neary and Charlie Phipps-Bennett. If you’d like to hear what’s coming next, click the image below to find out more!     UPCOMING EVENTS Microsoft Build - Seattle and Online - 21-23rd May 2024 Taking place on 21-23rd May 2024 both online and in Seattle, this is the perfect event to learn more about low code development, creating copilots, cloud platforms, and so much more to help you unleash the power of AI.   There's a serious wealth of talent speaking across the three days, including the likes of Satya Nadella, Amanda K. Silver, Scott Guthrie, Sarah Bird, Charles Lamanna, Miti J., Kevin Scott, Asha Sharma, Rajesh Jha, Arun Ulag, Clay Wesener, and many more.   And don't worry if you can't make it to Seattle, the event will be online and totally free to join. Click the image below to register for #MSBuild today!     European Collab Summit - Germany - 14-16th May 2024 The clock is counting down to the amazing European Collaboration Summit, which takes place in Germany May 14-16, 2024. #CollabSummit2024 is designed to provide cutting-edge insights and best practices into Power Platform, Microsoft 365, Teams, Viva, and so much more. There's a whole host of experts speakers across the three-day event, including the likes of Vesa Juvonen, Laurie Pottmeyer, Dan Holme, Mark Kashman, Dona Sarkar, Gavin Barron, Emily Mancini, Martina Grom, Ahmad Najjar, Liz Sundet, Nikki Chapple, Sara Fennah, Seb Matthews, Tobias Martin, Zoe Wilson, Fabian Williams, and many more.   Click the image below to find out more about #ECS2024 and register today!   Microsoft 365 & Power Platform Conference - Seattle - 3-7th June If you're looking to turbo boost your Power Platform skills this year, why not take a look at everything TechCon365 has to offer at the Seattle Convention Center on June 3-7, 2024.   This amazing 3-day conference (with 2 optional days of workshops) offers over 130 sessions across multiple tracks, alongside 25 workshops presented by Power Platform, Microsoft 365, Microsoft Teams, Viva, Azure, Copilot and AI experts. There's a great array of speakers, including the likes of Nirav Shah, Naomi Moneypenny, Jason Himmelstein, Heather Cook, Karuana Gatimu, Mark Kashman, Michelle Gilbert, Taiki Y., Kristi K., Nate Chamberlain, Julie Koesmarno, Daniel Glenn, Sarah Haase, Marc Windle, Amit Vasu, Joanne C Klein, Agnes Molnar, and many more.   Click the image below for more #Techcon365 intel and register today!   For more events, click the image below to visit the Microsoft Community Days website.    

Tuesday Tip | Update Your Community Profile Today!

It's time for another 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.   We're excited to announce that updating your community profile has never been easier! Keeping your profile up to date is essential for staying connected and engaged with the community.   Check out the following Support Articles with these topics: Accessing Your Community ProfileRetrieving Your Profile URLUpdating Your Community Profile Time ZoneChanging Your Community Profile Picture (Avatar)Setting Your Date Display Preferences Click on your community link for more information: Power Apps, Power Automate, Power Pages, Copilot Studio   Thank you for being an active part of our community. Your contributions make a difference! Best Regards, The Community Management Team

Hear what's next for the Power Up Program

Hear from Principal Program Manager, Dimpi Gandhi, to discover the latest enhancements to the Microsoft #PowerUpProgram, including a new accelerated video-based curriculum crafted with the expertise of Microsoft MVPs, Rory Neary and Charlie Phipps-Bennett. If you’d like to hear what’s coming next, click the link below to sign up today! https://aka.ms/PowerUp  

Tuesday Tip: Community User Groups

It's time for another 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!   Today's Tip: Community User Groups and YOU Being part of, starting, or leading a User Group can have many great benefits for our community members who want to learn, share, and connect with others who are interested in the Microsoft Power Platform and the low-code revolution.   When you are part of a User Group, you discover amazing connections, learn incredible things, and build your skills. Some User Groups work in the virtual space, but many meet in physical locations, meaning you have several options when it comes to building community with people who are learning and growing together!   Some of the benefits of our Community User Groups are: Network with like-minded peers and product experts, and get in front of potential employers and clients.Learn from industry experts and influencers and make your own solutions more successful.Access exclusive community space, resources, tools, and support from Microsoft.Collaborate on projects, share best practices, and empower each other. These are just a few of the reasons why our community members love their User Groups. Don't wait. Get involved with (or maybe even start) a User Group today--just follow the tips below to get started.For current or new User Group leaders, all the information you need is here: User Group Leader Get Started GuideOnce you've kicked off your User Group, find the resources you need:  Community User Group ExperienceHave questions about our Community User Groups? Let us know! We are here to help you!

Super User of the Month | Ahmed Salih

We're thrilled to announce that Ahmed Salih is our Super User of the Month for April 2024. Ahmed has been one of our most active Super Users this year--in fact, he kicked off the year in our Community with this great video reminder of why being a Super User has been so important to him!   Ahmed is the Senior Power Platform Architect at Saint Jude's Children's Research Hospital in Memphis. He's been a Super User for two seasons and is also a Microsoft MVP! He's celebrating his 3rd year being active in the Community--and he's received more than 500 kudos while authoring nearly 300 solutions. Ahmed's contributions to the Super User in Training program has been invaluable, with his most recent session with SUIT highlighting an incredible amount of best practices and tips that have helped him achieve his success.   Ahmed's infectious enthusiasm and boundless energy are a key reason why so many Community members appreciate how he brings his personality--and expertise--to every interaction. With all the solutions he provides, his willingness to help the Community learn more about Power Platform, and his sheer joy in life, we are pleased to celebrate Ahmed and all his contributions! You can find him in the Community and on LinkedIn. Congratulations, Ahmed--thank you for being a SUPER user!  

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)

Top Solution Authors
Top Kudoed Authors
Users online (3,581)