The code I'm using consistently returns the next most recent entry in a SharePoint list as opposed to the most recent one. I built out a whole screen to test this so I could see everything going on. This allowed me to determine definitively that the filter part of the function is what causes this behavior. With the filter included it fails to find the very last qualifying record. Take the filter out and it works perfectly (except I need to have the filter of course).
Sequence is run code > add a record to SP > run code again in a minute or two and see failure.
I'm at a loss... how can a documented function behave so intermittently? How are we supposed to build reliable code blocks when the simpliest little piece of code only sometimes returns the last record?
The only other thing that helps is waiting a LONG time (like 15 minutes). Then it works the first time but executing again even a few minutes later it fails the first time again.
The target list is brand new, containing only plain text, number and date columns. Explicitly setting the ID using LookUp easily allows me to return the correct record, just not when I find it based on the filter condition.
So to clarify, with the filter in place in the example below, I expect to get record ID: 5 but I consistently get ID: 6. If I execute the code again, I then get the correct result (5) which appears to demonstrate that it is not the terms of the filter but that the last record is somehow not in a state that allows it to be returned in the result set the first time the code executes (even making all the records have filter parameters that qualify does not fix further demonstrating this).
Does not work
Events
ID | EventClass | TaskID | |
8 | Task | 983 | I want |
7 | Task | 983 | I get |
6 | Task | 983 | |
5 | Task | 983 |
//find most recent previous entry matching conditions Refresh(Events); Set(varPreviousEvent, First( Sort( Filter( Events, EventClass = varCurrentEventClass, TaskID = varTask.ID), ID, Descending) ) );
Works
Events
ID | EventClass | TaskID | |
8 | Task | 983 | I want & I get |
7 | Task | 983 | |
6 | Task | 983 | |
5 | Task | 983 |
Refresh(Events); Set(varPreviousEvent, First( Sort( //Filter( Events, //EventClass = varCurrentEventClass, TaskID = varTask.ID), ID, Descending) ) );
Some things that didn't work:
Update: I just recreated another SP list and a new app and was EASILY able to recreate this issue... code only works the *second* time you click the button unless you wait several minuts. I need to use this code block on the fly to find and update records and can't have it only work sometimes, when it feels like it. I really don't know what to do... I need this simple function in dozens of places around my app. Is this a bug?
Solved! Go to Solution.
I have tried some similar stuff on my side and used a different approach and it seemed to work ok. Basicly, I took a Sharepoint dataset without any Choice, Lookup or Person columns and let Powerapps create the App from the list. It was about 300 or so items. I then made a collection from the list (colsplist,Splist) and used that as the items in the gallery. I modified the Edit form and View form screens still had the Datasource was the original Splist but I changed the Item property from Gallery1.Selected to Lookup(Splist, ID=Gallery1.Selected.ID); you need to do that because the datasource of the gallery is no longer identical to the datasource in the Edit form. In the OnSuccess property of the EditForm, I put in ClearCollect(colsplist,Splist). When I went back to the Gallery screen, the item was correct.
I'm not saying that this simple solution would work in your case but using collections whereever possible could cut out the latency issue you are having in your app. You would need to step back and think over whether it is possible to do that. You will always have to write your changes to the underlying Sharepoint list but use ClearCollect to recreate the collection after you have made the change.
My list looks like this with the unrelated columns hidden.
I am finding the last event matching both the EventClass and TaskID (both are my columns, not the unique ID of the event). The ID of the event is shown on the far left.
I immediately tried collecting Events then filtering and returning the right one. This was the very first thing I tried actually.
Keep in mind the issue is not a gallery not refreshing (I don't show these events to anyone anywhere) but rather just being able to accurately assign the correct item to a variable in a block of code so I can write something to the item. Simple concept really (and one done routinely in functional systems)... when an item updates you find the previous one matching the type and class and write how many minutes it has been from then until now. This builds a table of events with each one having the number of minutes in each status. Won't work though when it can't reliably find the correct one.
I appreciate your trying to help but I think I must have some kind of a bigger problem which is unfortunate. I'm supposed to be rolling this out and I don't know how I can when something so simple can't work. I have to assume there are other functions not returning the correct values as well.
I discovered that if I used the same exact code in another app I have (which has the same datasources) it works exactly as expected... I don't know what this means. All the advanced settings for the apps are identical. I can't build this app over again (it took me a very long time). Is my app corrupted somehow? I saved the affected app with a new name but it behaved the same way... I deleted all the datasources and connectors and re-associated them, no luck.
Anyone have any ideas how to troubleshoot this?
Interestingly, when the sort is reversed, and it is looking for the first qualifying record, it behaves the same way.
Using this code I went in to the first record that qualified (ID:464) and made it not qualify. Went back to my app and pressed button and it returned '464'. Pressed it again and it returned the correct value, '465'.
Refresh(Events); Set(varNewPreviousEvent, LookUp(Sort(Events,ID, Ascending), EventClass = varCurrentEventClass && TaskID = 983 ) )
Session ID: c0f61316-1795-4ba2-b1d9-7526c819c929 PowerApps 3.18103.23
another thought, clear the variable by setting it to “” before loading it again.
@Drrickryp you and I must think a lot alike, lol. I tried those very things (even though it felt foolish repeating the code over).
I really appreciate your helping - it's been a long day and I don't feel very productive today.
Here is what I found out... I created a new app from blank and painstakingly copied all the contents from every screen over to the new 'shell' of an app, saved it and guess what, it works fine (at least for now)!
Somewhere along the development (which spanned a fairly long time and saw some significant design changes) the app must have become corrupted somehow.
In case anyone on staff stumbles by this and is interested in learning why this happened, here are the session IDs:
Non-working app
Session ID: c0f61316-1795-4ba2-b1d9-7526c819c929 PowerApps 3.18103.23
New, working app
Session ID: cc951286-f78b-4b5d-ac12-bf7555e3ab5a PowerApps 3.18103.23
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