cancel
Showing results for 
Search instead for 
Did you mean: 
Reply
PhilD
Kudo Kingpin
Kudo Kingpin

Odd behavior using First & Filter together - getting *second* record not first unless wait long time

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 

IDEventClass TaskID  
8Task983I want
7Task983I get
6Task983 
5Task983 

//find most recent previous entry matching conditions Refresh(Events); Set(varPreviousEvent, First( Sort( Filter( Events, EventClass = varCurrentEventClass, TaskID = varTask.ID), ID, Descending) ) );

 

Works

Events 

IDEventClass TaskID  
8Task983I want & I get
7Task983 
6Task983 
5Task983 

Refresh(Events); Set(varPreviousEvent, First( Sort( //Filter( Events, //EventClass = varCurrentEventClass, TaskID = varTask.ID), ID, Descending) ) );

 

Some things that didn't work:

  • Substituting actual values instead of variables in filter.
  • Collecting the list first, then filtering the collection (collection didn't include the very last result so didn't matter).
  • Refreshing before, after, before & after.
  • Switching the order of the Sort & Filter statements.
  • Running the same block of code twice in succession.
  • Using only one filter statement, tried both separately.

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? 

38 REPLIES 38

@PhilD Thank you for reaching out to us and going the extra mile to help us diagnose this issue. I have two follow-up questions: 

  1. Do you have something external that may be modifying your Sharepoint list (i.e. a Microsoft Flow which triggers when a Sharepoint data item changes)? 
  2. The logs indicated that you ran your tests on WebAuthoring Preview Mode.. Can you save the app, publish it, and repeat the process while running the published app from web.powerapps.com? In this mode, you may see red toast errors, hidden in Preview Mode, that may help us with our investigation. 

You may also email me directly at erga (at) microsoft (dot) com.

There are no Flows in use with this app. 

 

I will have to build some controls on my test sheet to switch the refresh events but here is a test I performed just now in the published app showing the same results using the code shown below. It did produce an etag mismatch error. Results are illustrated in the images belowthe code

 

    
 Refresh(Tasks);
Set(varTask,GalleryCurrentUserTasks.Selected);

//SET EVENT STATUS MINUTES VARIABLES***************************************************************************
//New
//set the event class of the current event so we know which type to update later with the minutes in this status. choices are 'Employee' or 'Task'

Set(varCurrentEventClass,"Task"); // ** update to match current event class **
//Set(varPreviousEvent, Blank());

//get most recent *previous* Event entry that matches critieria of current event (will write StatusMinutes to this one later).

//find last qualifying record by looking up the first one in a sorted, filtered set
Refresh(Events);
Set(varPreviousEventFirstPass,
LookUp(Sort(Events,ID, Descending),
EventClass = varCurrentEventClass && TaskID = varTask.ID
)
);

//find last qualifying record by looking up the first one in a sorted, filtered set
Refresh(Events);
Set(varPreviousEventSecondPass,
LookUp(Sort(Events,ID, Descending),
EventClass = varCurrentEventClass && TaskID = varTask.ID
)
);



//END EVENT SET STATUS MINUTES VARIABLES***************************************************************************



//WRITE PREVIOUS EVENT STATUS MINUTES ***************************************************************************
//set the event's time to use in the calculation
Set(varPreviousEventTime,varPreviousEvent.Time);

// calculated minutes between previous time & now
Set(varPreviousEventStatusMinutes,DateDiff(varPreviousEventTime,Now(),Minutes));

//now write calculated number of minutes to previous event row determined earlier
//Refresh(Events);
Patch(
Events,
varPreviousEvent,
{StatusMinutes:varPreviousEventStatusMinutes}
);

//END WRITE PREVIOUS EVENT STATUS MINUTES ***************************************************************************

If(CheckboxOperation1.Value=true,
//WRITE NEW EVENT ***************************************************************************
//New
//write timestamped event for current update
//Refresh(Events);
Patch(
Events,
{ID: Blank()}, // faster than using "Defaults" as only one call is needed
{Title: varThisAppName & " New Test Event Operation 1"},
{EventClass:varCurrentEventClass}, // set earlier, no need to change
{EventType:"New Event Test operation 1"}, // ** update this to indicate current context **
//{EmpID:368}, //plain text campus key from Employee table
{TaskID:varTask.ID}, // auto number row ID from SharePoint list
{TaskStatus:"New Event Test Assigned"}, // ** update to appropriate value, if this is a Task Event, value in "Status" = previously used "TaskStatus"
{EmpStatus:"New Event Test Assigned"}, // ** update to appropriate value, if this is a Emp Event, value in "Status" = previously used "EmpStatus"
{Time:Now()}
)


//END WRITE NEW EVENT ***************************************************************************

);

 

Session ID: 1bac6e7d-9b10-49e5-8c73-06b63338d16f
PowerApps 3.18111.12

 

LookupNotFindingLastRecord2.jpg

 

 

LookupNotFindingLastRecord3.jpg

@PhilD ETAG mismatch errors usually indicate a conflict with the current write request and the server data, which may have been updated to a newer version. If anything outside of your app modifies your Sharepoint table, then your app will throw an error asking you to reload your local data. The ETAGs feature is simply a mechanism that detects these conflicts. 

 

I see in our logs that there are some Flows that modifying your Sharepoint table on the server. These Flows don't necessarily need to be used in yout PowerApp. Can you help us figure out which Flows may be modifying the Sharepoint table data, independent of PowerApps? I am looking for something like: 

 

image.png

Thanks!

Eric

Hmmm... there is  definitely not a Flow that makes changes to any of the tables involved. Becuase this app was designed for multiple users I always avoided using Flow to do anything to the data for just this very reason.

 

There are two Flows (one now deleted) on the same SP site as described and shown below.

 

Flow 1 sends me an email when someone requests access (using a different app altogether). The app I am testing on does not have this SP list as a data source and the SP list that triggers the notification is not linked to any of the tables used in the app. Also, the Flow does not write to anything, it is just an out of the box "send email" flow.

 

Flow 2 was disabled during all of this testing and was designed to send me an email when a new error was written to a SP list. Again, this Flow didn't write to anything, was disabled and has been deleted today just to be sure.

 

Since deleting  Flow 1 I retested with the same results just now (session ID at the bottom of this message). No errors, same behavior as before... the only way it works is if I go for coffee and come back - somewhere around 5 minutes or so seems to "reset" this and make it work. 

 

Flow 1

FlowRequestAccess.jpg

 

Flow 2

(now deleted)

FlowNewError.jpg

 

Session ID: 1e43a0b3-c5e5-4ed5-b64d-b3aa39ca4790
PowerApps 3.18111.12

New information

I have discovered that refreshing the app completely makes this work reliably the first time (without waiting the 5 minutes).  Consider the scenarios below... maybe this provides a clue?

 

Scenario 1

  • Open the app, run the operation - works fine. 
  • Run the operation again without waiting 5 minutes - finds second to last record.
  • Run the operation again without waiting 5 minutes - finds second to last record.
  • Run the operation again without waiting 5 minutes - finds second to last record.
  • Run the operation again without waiting 5 minutes - finds second to last record.

Scenario 2

  • Open the app, run the operation - works fine. 
  • Refresh browser/app to get new session ID.
  • Run the operation - works fine. 
  • Refresh browser/app to get new session ID.
  • Run the operation - works fine. 
  • Refresh browser/app to get new session ID.
  • Run the operation - works fine. 

ID from last session where it worked

Session ID: ee9709c1-dcaf-4e75-955e-fc389be0dc7b
PowerApps 3.18111.12

I have definitively ruled out "Improved app rendering" as having any connection to this issue. Same results either way. I also created indexes on all SharePoint list columns in the Events list which made no difference, again same results either way.

 

I have a stripped down version of my original app and can still easily and reliably reproduce this problem.

I think I discovered something important related to what is causing this!!!

 

In my test app, stripped of all unrelated and unneeded screens, datasources, etc. If I uncheck the feature "Use longer data cache timeout and background refresh" the lookup suddenly works as expected... ever time, reliably. If I turn it back it on, the problem immediately returns. Turn it back off, it is fixed.

 

Obviously I need to do some more testing on my actual production app but this is the first time I have found a reliable way to toggle this problem from fixed to broken and back again. 

 

Another thing, I have felt from the beginning that a lookup function should not have to depend on a Refresh() before or after it as this is what the lookup does... in my testing, when the feature is turned off, my lookup works without any refresh of the Events table anywhere in the entire routine!

 

LookupFix.png

Super glad to hear you're unblocked!

 

Thanks for letting us know, and for letting us know what was behind it! Knowing that it's related to this experimental setting will be hugely helpful as we continue investigating.

- Paul C.
Software Engineer on PowerApps

@PhilD

Double kudos to you for figuring this problem out!  I am accepting your post as the solution to the original problem.

@PhilD 

Thanks a lot! I was facing this issue for several weeks and now all works perfectly. Thats the only solution that solved my problem.

Helpful resources

Announcements

Community will be READ ONLY July 16th, 5p PDT -July 22nd

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!

Summer of Solutions | Week 4 Results | Winners will be posted on July 24th

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

Check Out | 2024 Release Wave 2 Plans for Microsoft Dynamics 365 and Microsoft Power Platform

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.    

Updates to Transitions in the Power Platform Communities

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

Users online (2,193)