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.
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?
--
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,
Solved! Go to Solution.
@Anonymous walk before running! You might want to build a separate app to just thrash out your ideas. I have many "playground" apps just for that.
In this case, yes, a simple answer would be to have them enter the email. You could then look that up and use it for any searches, filters or lookups you want. The key is the email. That is unique. If you have that, it's pretty easy to go to the source and get what else you need. Nice aspect of the SharePoint column is that you have most of that already in a People column. No such joy on Excel.
I do recommend that you consider using SharePoint over Excel. You will have much better results with it.
what about jogging?
as a sideq, how do you go make a custom thing? Is there a part of PA I am not seeing?
Back on track, as an idea I am kind of forming: to avoid caps and whatnot, I should probably do some text function that has it all on caps (or not), grab the whole mail and compare it to User().Mail.
Regarding the recommendation, tho, I absolutely wish I could continue using an SP list, but, a requirement is to have a connection of database (Excel/SP) to Tableau... and SP to Tableau has a problem in connection regarding some either security issues or that the login is not supported (going by what I read somewhere). So, Excel it is, sadly for me
@Anonymousdon't forget a lot of falling in between
So when I refer to custom - I just simply mean that you will have to "wire" together, sometimes multiple, controls and will need to put your own logic in place to make them all work the way you want. There is nothing special about doing so in regard to creating something like that, you just need to have a clear mission.
Although - now we do have custom components available, so some of that can be put into those.
Back on topic - yes, you'll always want to use Upper and/or Lower functions on text when comparing values. You never know what people will put in. Lower(MyFieldValue)=Lower(User().Email)
Understood you go with what is requested on the Excel. However, surprised to hear Excel over SharePoint in regard to security...that's a bit backward. Anyway - be that as it may.
Am having some problem with the code. In Excel, I have the table "DBTable", which has the columns proyect name, task name, start date, end date, real end date, in charge of mail ("Correo encargado"). I think I am not making a correct order of the filter/search for filtering by user (ie: mail). What I currently have is:
Distinct(SortByColumns(Filter(DBTable, Search(DBTable,User().Email,"Correo_x0020_encargado")),"Nombre_x0020_Proyecto",If(SortDescending1,Descending,Ascending)),'Nombre Proyecto')
(Yes, this other computer uses "," instead of my usual ";").
Can you point out what I am doing wrong there?
thanks-
I have on start of the App:
Set(correoUsuario,User().Email)
Then, on the browseScreen1 I have a droplist with the following code (which returns empty even when it shouldn't):
Distinct(Filter(DBTable, correoUsuario='Correo encargado'),'Nombre Proyecto')
Which should give back unique 'proyect names' (nombre proyecto), and filter by using the starting variable, comparing it to the data in the column 'correo encargado' from Excel.
Afterwards, in the gallery Item code, I have:
SortByColumns(Filter(DBTable,'Nombre Proyecto'=listaProyectos.Selected.Value && correoUsuario='Correo encargado'),"Fecha_x0020_Termino",If(SortDescending1,Descending,Ascending))
Which -should- give me items that my username has, however, nothing is showing.
@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.
For some reason, after I saved, quit and reopen app, now it shows the data. It worked with:
Droplist:
Distinct(Filter(DBTable,correoUsuario='Corroe encargado'),'Nombre Proyecto')
Gallery:
SortByColumns(Filter(DBTable,'Nombre Proyecto'=listaProyectos.Selected.Value && correoUsuario='Correo encargado'),"Fecha_x0020_Termino",If(SortDescending1,Descending,Ascending))
I think, however, that adding the lower case will help me in the long run. Still not sure why I need to save, close and re open in order to see changes/see data. (FYI: working on a win7 HP elitebook).
As an additional note, it seems that if I use the "view online" of the Excel file, the connection kinda fails or something, because it stops showing data.
@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.
Not entirely sure what do you mean by a label? @RandyHayes
Also, the F5/play to see it kinda doesn't work right, like, I use the (refresh) symbol I have and nope. Hence, save, quit, open again.
Also, help again plox.
I have my gallery which when opening an entry leads me to my detail screen. However, when I use the "go to edit" from detail to edit, it shows no element. Does detail have to have same fields than edit view? Dont know what else could be. It does take me to the proper screen, however shows no data.
@Anonymous A label, just a standard control. In your example, you have a variable you are setting. Want to see quickly if it is the value you want? Just insert a label control and set the Text property to your variable.
Your Gallery, Detail screen and Edit screen should both be set to the same data source. Your Item property should be set to something that will return an item for it to either display or edit.
In this case, most likely your Galleryxx.Selected
Which actual fields are shown on the display or edit is up to you. They don't have to be the same at all, but the underlying datasource does for them to both work off of your Gallery.
Dear Community Members, We'd like to let you know of an upcoming change to the community platform: starting July 16th, the platform will transition to a READ ONLY mode until July 22nd. During this period, members will not be able to Kudo, Comment, or Reply to any posts. On July 22nd, please be on the lookout for a message sent to the email address registered on your community profile. This email is crucial as it will contain your unique code and link to register for the new platform encompassing all of the communities. What to Expect in the New Community: A more unified experience where all products, including Power Apps, Power Automate, Copilot Studio, and Power Pages, will be accessible from one community.Community Blogs that you can syndicate and link to for automatic updates. We appreciate your understanding and cooperation during this transition. Stay tuned for the exciting new features and a seamless community experience ahead!
We are excited to announce the Summer of Solutions Challenge! This challenge is kicking off on Monday, June 17th and will run for (4) weeks. The challenge is open to all Power Platform (Power Apps, Power Automate, Copilot Studio & Power Pages) community members. We invite you to participate in a quest to provide solutions in the Forums to as many questions as you can. Answers can be provided in all the communities. Entry Period: This Challenge will consist of four weekly Entry Periods as follows (each an “Entry Period”) - 12:00 a.m. PT on June 17, 2024 – 11:59 p.m. PT on June 23, 2024 - 12:00 a.m. PT on June 24, 2024 – 11:59 p.m. PT on June 30, 2024 - 12:00 a.m. PT on July 1, 2024 – 11:59 p.m. PT on July 7, 2024 - 12:00 a.m. PT on July 8, 2024 – 11:59 p.m. PT on July 14, 2024 Entries will be eligible for the Entry Period in which they are received and will not carryover to subsequent weekly entry periods. You must enter into each weekly Entry Period separately. How to Enter: We invite you to participate in a quest to provide "Accepted Solutions" to as many questions as you can. Answers can be provided in all the communities. Users must provide a solution which can be an “Accepted Solution” in the Forums in all of the communities and there are no limits to the number of “Accepted Solutions” that a member can provide for entries in this challenge, but each entry must be substantially unique and different. Winner Selection and Prizes: At the end of each week, we will list the top ten (10) Community users which will consist of: 5 Community Members & 5 Super Users and they will advance to the final drawing. We will post each week in the News & Announcements the top 10 Solution providers. At the end of the challenge, we will add all of the top 10 weekly names and enter them into a random drawing. Then we will randomly select ten (10) winners (5 Community Members & 5 Super Users) from among all eligible entrants received across all weekly Entry Periods to receive the prize listed below. If a winner declines, we will draw again at random for the next winner. A user will only be able to win once overall. If they are drawn multiple times, another user will be drawn at random. Individuals will be contacted before the announcement with the opportunity to claim or deny the prize. Once all of the winners have been notified, we will post in the News & Announcements of each community with the list of winners. Each winner will receive one (1) Pass to the Power Platform Conference in Las Vegas, Sep. 18-20, 2024 ($1800 value). NOTE: Prize is for conference attendance only and any other costs such as airfare, lodging, transportation, and food are the sole responsibility of the winner. Tickets are not transferable to any other party or to next year’s event. ** PLEASE SEE THE ATTACHED RULES for this CHALLENGE** Week 1 Results: Congratulations to the Week 1 qualifiers, you are being entered in the random drawing that will take place at the end of the challenge. Community MembersNumber of SolutionsSuper UsersNumber of Solutions @anandm08 23 @WarrenBelz 31 @DBO_DV 10 @Amik 19 AmínAA 6 @mmbr1606 12 @rzuber 4 @happyume 7 @Giraldoj 3@ANB 6 (tie) @SpongYe 6 (tie) Week 2 Results: Congratulations to the Week 2 qualifiers, you are being entered in the random drawing that will take place at the end of the challenge. Community MembersSolutionsSuper UsersSolutions @anandm08 10@WarrenBelz 25 @DBO_DV 6@mmbr1606 14 @AmínAA 4 @Amik 12 @royg 3 @ANB 10 @AllanDeCastro 2 @SunilPashikanti 5 @Michaelfp 2 @FLMike 5 @eduardo_izzo 2 Meekou 2 @rzuber 2 @Velegandla 2 @PowerPlatform-P 2 @Micaiah 2 Week 3 Results: Congratulations to the Week 3 qualifiers, you are being entered in the random drawing that will take place at the end of the challenge. Week 3:Community MembersSolutionsSuper UsersSolutionsPower Apps anandm0861WarrenBelz86DBO_DV25Amik66Michaelfp13mmbr160647Giraldoj13FLMike31AmínAA13SpongYe27 Week 4 Results: Congratulations to the Week 4 qualifiers, you are being entered in the random drawing that will take place at the end of the challenge. Week 4:Community MembersSolutionsSuper UsersSolutionsPower Apps DBO-DV21WarranBelz26Giraldoj7mmbr160618Muzammmil_0695067Amik14samfawzi_acml6FLMike12tzuber6ANB8 SunilPashikanti8
On July 16, 2024, we published the 2024 release wave 2 plans for Microsoft Dynamics 365 and Microsoft Power Platform. These plans are a compilation of the new capabilities planned to be released between October 2024 to March 2025. This release introduces a wealth of new features designed to enhance customer understanding and improve overall user experience, showcasing our dedication to driving digital transformation for our customers and partners. The upcoming wave is centered around utilizing advanced AI and Microsoft Copilot technologies to enhance user productivity and streamline operations across diverse business applications. These enhancements include intelligent automation, AI-powered insights, and immersive user experiences that are designed to break down barriers between data, insights, and individuals. Watch a summary of the release highlights. Discover the latest features that empower organizations to operate more efficiently and adaptively. From AI-driven sales insights and customer service enhancements to predictive analytics in supply chain management and autonomous financial processes, the new capabilities enable businesses to proactively address challenges and capitalize on opportunities.
We're embarking on a journey to enhance your experience by transitioning to a new community platform. Our team has been diligently working to create a fresh community site, leveraging the very Dynamics 365 and Power Platform tools our community advocates for. We started this journey with transitioning Copilot Studio forums and blogs in June. The move marks the beginning of a new chapter, and we're eager for you to be a part of it. The rest of the Power Platform product sites will be moving over this summer. Stay tuned for more updates as we get closer to the launch. We can't wait to welcome you to our new community space, designed with you in mind. Let's connect, learn, and grow together. Here's to new beginnings and endless possibilities! If you have any questions, observations or concerns throughout this process please go to https://aka.ms/PPCommSupport. To stay up to date on the latest details of this migration and other important Community updates subscribe to our News and Announcements forums: Copilot Studio, Power Apps, Power Automate, Power Pages