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

@Drrickryp, thanks for walking through some things Phil could try. 

 

@PhilD, I am thinking the test to run in this case is to see the values of varCurrentEventClass and varTask.ID.

 

  • How are the variables defined?
  • Where are the variables defined? What controls, what properties?

 

Insert labels on the screen to show the values of those variables. Interact with your app and confirm when they should change and identify when they do not.

Microsoft Employee
@8bitclassroom

Good morning! That's exactly what I did actually. Keep in mind that I also at one point replaced all the variables with the hard-coded values they represented, and the results were the same. Additionally, once I directly copied into a new empty shell of a app, everything worked as expected. No other changes were made to the new app before testing. that's what really made this so unbelievable was sitting there watching my test screen with the various values not updating when I know they should have.

I'm wondering if somehow design changes I made along the way could have caused this. For example originally I had used some SharePoint lookup columns until I determine that patching them was problematic when values collided.

Also thanks to @Drrickryp for this little nugget.

While the code below didn't work in my original app (for reasons still unknown) it works fine in the new one (as does everything else I was doing), this is more graceful and efficient way than returning a sorted set, filtering it and then taking the first one. Thanks for suggesting a more simple way! 

 

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

Apps are reverting back to their previous unreliable state. About half the time the formula below again ignores the latest entry and returns the second latest, regardless of refreshing before, after or both... This is happening even when the lastest and second latest entry are separated by several minutes.

 

 

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

At this point I'm giving up on what should be one of the more simple (but extremely important) aspects of my app, recording the time from one event to another, because a few lines of code cannot be relied on to accurately return the last record in a sorted set with SharePoint as the datasource. After all this, the same behavior persists.

 

Just wanted to let others know. I have already invested countless hours in reproducing and documenting this behavior and ultimately recreated the apps from scratch  which seemed to provide a fix for a while (although the reason this fixed my problem was also never explained). I simply have no more time to invest on this as we need to have something usable in place.


Obviously this is an extreme disappointment and will certainly make us think twice before using PowerApps again for anything this substantial.

Hi @PhilD,

 

I'm sorry to hear you've been experiencing any trouble, let alone this much!

This sounds like it could be a bug, in which case we would love to fix it. 
It sounds to me, like I believe it seems to you, that the Refresh() function might not be working correctly and the Set() function might be getting executed for the Refresh() actually completes. Perhaps this is an oversimplification, though.

In any case, would you mind trying to but the Set() function in a separate button so that you can trigger it manually? So do everything normally and then, after the refresh, wait about a minute. Then click the button which has the Set() function. Does it work reliably then?

Clearly this wouldn't be a solution even if it does work, but it might go a long way to helping us understand the problem in the hopes of fixing the bug.

Also, if you wouldn't mind getting fresh session Id of a session where the issue repros, that could be helpful, as well.

- Paul C.
Software Engineer on PowerApps

Thanks @Paul_C

 

Your assessment is spot on with the behavior I'm witnessing. I did some tests just now and tried to summarize what I'm seeing and the steps I took. I hope this helps. 

 

 

 

Session ID 

 

Session ID: e4116311-e996-475d-a7a1-72d3a278ea71
PowerApps 3.18111.15

 

 

Testing and results

Code indicated in blue is supplied at bottom of post 

 

  • Run Full code - this code first gets the latest qualifying record and updates it before writing a brand new record.  All subsequent runs, the lookup does not "see" the latest record that was added, even after waiting several minutes between runs. 
  • Run Button 1 > then wait > then run Button 2 - the lookup still does not "see" the latest record that was added. If however I run Button 2 again (without running Button 1, it returns the correct result every time). This appears to be the "smoking gun" but not sure what it means.
  • Add item meeting criteria directly to SP list (Events) > then run Button 2 - the lookup still does not "see" the latest record that was added. If however I run Button 2 again (without running Button 1, it returns the correct result every time).  This is the same result as the test above.

 

Actual code used in test

 

Full code - all operations together (note highlighted block)

 

Set(varStartOperationTime,Now()); 

//put code below to test
//**********************************************




    //Set(varTask,LookUp(Tasks,ID=Value(TextInput_varOperation1.Text))); //set TaskID var manually
    
    Refresh(Tasks);
    Set(varTask,GalleryCurrentUserTasks.Selected); //set TaskID var the same as in prod

//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 **
	
    //find last qualifying record by looking up the first one in a sorted, filtered set
    Refresh(Events);
    Set(varPreviousEvent,
        LookUp(Sort(Events,ID, Descending),               
            EventClass = varCurrentEventClass && TaskID = varTask.ID
        )
    ); 

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

    // catch errors and record to a table
    If(!IsEmpty(Errors(Events).Record),  
        Patch(
        Errors, //don't change
        {ID: Blank()}, //don't change
        {Title: "Events table error"},
        {Error: First(Errors(Events)).Error}, //don't change
        {Column: First(Errors(Events)).Column}, //don't change
        {Message: First(Errors(Events)).Message}, //don't change
        {Record: First(Errors(Events)).Record.ID}, //don't change
        {ErrorDate:Now()}, //don't change
		{App:varThisAppName}, //don't change
        {Comments:"Writing event status minutes during test operation 1"}  // ** update this to indicate current context of error **
        );
        Revert(Events)
    );

//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, //allows for testing code with and without writing a new event more easily
//WRITE NEW EVENT ***************************************************************************
    //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 **
            {TaskID:varTask.ID}, // auto number row ID from SharePoint list
            {TaskStatus:"New Event Test Assigned"},    
            {EmpStatus:"New Event Test Assigned"},     
            {Time:Now()}
        );

	// catch errors and record to a table
    If(!IsEmpty(Errors(Events)), //don't change
        Patch(
        Errors, //don't change
        {ID: Blank()}, //don't change
        {Title: "Events Error"}, //don't change
        {Error: First(Errors(Events)).Error}, //don't change
        {Column: First(Errors(Events)).Column}, //don't change
        {Message: First(Errors(Events)).Message}, //don't change
        {Record: First(Errors(Events)).Record.ID}, //don't change
        {ErrorDate:Now()}, //don't change
		{App:varThisAppName}, //don't change
        {Comments:"Writing new event during test operation 1"} // ** update this to indicate current context **
        );
        Revert(Events) //don't change
    )

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

); 





//**********************************************
//put code above to test
Set(varEndOperationTime,Now()); //don't change this
Set(varOperationSeconds,DateDiff(varStartOperationTime,varEndOperationTime,Milliseconds))//don't change this

 

 

Button 1 (highlighted code removed)

 

Thanks @Paul_C



Your assessment is spot on with the behavior I'm witnessing. The difficult thing is getting it to reliably repeat in order to troubleshoot. I'm fairly certain that I already performed the operations in separate operations as you suggested and it proved to fix the issue but I am going to perform the test again. I will provide an update and session info if I can reproduce.



Session ID of app after recreating the issue at 11/20/2008 10:14 am EST

Session ID: e4116311-e996-475d-a7a1-72d3a278ea71
PowerApps 3.18111.15


Full code - all operations together

Set(varStartOperationTime,Now()); 

//put code below to test
//**********************************************




    //Set(varTask,LookUp(Tasks,ID=Value(TextInput_varOperation1.Text))); //set TaskID var manually
    
    Refresh(Tasks);
    Set(varTask,GalleryCurrentUserTasks.Selected); //set TaskID var the same as in prod

//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 **
	


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

    // catch errors and record to a table
    If(!IsEmpty(Errors(Events).Record),  
        Patch(
        Errors, //don't change
        {ID: Blank()}, //don't change
        {Title: "Events table error"},
        {Error: First(Errors(Events)).Error}, //don't change
        {Column: First(Errors(Events)).Column}, //don't change
        {Message: First(Errors(Events)).Message}, //don't change
        {Record: First(Errors(Events)).Record.ID}, //don't change
        {ErrorDate:Now()}, //don't change
		{App:varThisAppName}, //don't change
        {Comments:"Writing event status minutes during test operation 1"}  // ** update this to indicate current context of error **
        );
        Revert(Events)
    );

//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, //allows for testing code with and without writing a new event more easily
//WRITE NEW EVENT ***************************************************************************
    //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 **
            {TaskID:varTask.ID}, // auto number row ID from SharePoint list
            {TaskStatus:"New Event Test Assigned"},    
            {EmpStatus:"New Event Test Assigned"},     
            {Time:Now()}
        );

	// catch errors and record to a table
    If(!IsEmpty(Errors(Events)), //don't change
        Patch(
        Errors, //don't change
        {ID: Blank()}, //don't change
        {Title: "Events Error"}, //don't change
        {Error: First(Errors(Events)).Error}, //don't change
        {Column: First(Errors(Events)).Column}, //don't change
        {Message: First(Errors(Events)).Message}, //don't change
        {Record: First(Errors(Events)).Record.ID}, //don't change
        {ErrorDate:Now()}, //don't change
		{App:varThisAppName}, //don't change
        {Comments:"Writing new event during test operation 1"} // ** update this to indicate current context **
        );
        Revert(Events) //don't change
    )

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

); 





//**********************************************
//put code above to test
Set(varEndOperationTime,Now()); //don't change this
Set(varOperationSeconds,DateDiff(varStartOperationTime,varEndOperationTime,Milliseconds))//don't change this

 

 

Button 2 (removed highlighted code run in separate operation)

 

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

 

 

Thanks @PhilD!

 

Two interesting things to try separately:

A) Try repeating the Refresh command multiple times. E.g.:

Button 2 

 

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

 (maybe even try 3 or 4 times, just to see if it behaves differently) 

 

B) What I originally meant was to put the Refresh and the Set in different buttons, for instance:

Button 2 

 

Refresh(Events);

<Long manual delay after clicking Button2 but before clicking Button3>

Button 3 

 

    Set(varPreviousEvent,
        LookUp(Sort(Events,ID, Descending),               
            EventClass = varCurrentEventClass && TaskID = varTask.ID
        )
    ); 

 

These two things will help test if the problem is the next line of code running before Refresh() finishes (B)) or if it's some weird issue where refresh needs to happen twice (A)).

 

 

 

- Paul C.
Software Engineer on PowerApps

Thank you @Paul_C... I have answers to your questions and some additional info that I think will be helpful.

 

Answer to your questions

A) I had tried this in my previous testing but did it again. This has no affect, even if the refresh line is repeated many times.

 

B) I separated the operations as you suggested and it still behaved the same.

 

New info/results

I think I have found a "smoking gun". Repeating the refresh either in or outside the operation has no affect but repeating the entire lookup over makes a difference. 

 

I built this with four separate variables, in four separate lookups, that were repeated one after the other in the same operation with the refresh happening at different places as noted in the steps below.

 

  1. With a refresh occurring before all four lookups - first pass failed, subsequent passes successful.
  2. Same but with no refresh on any of the lookups - all passes failed.
  3. Same but with refresh only on fourth pass of the lookup - all passes failed.
  4. Same but with refresh only on first pass of the lookup - all passes failed.
  5. Same but with refresh only on firstfourth pass of the lookup - all passes failed.
  6. With a refresh occurring before all four lookups (code shown below in code window) - first pass failed, subsequent passes successful (same as #1 repeated to ensure nothing had changed).
  7. Same but with refresh only on first & second  pass of the lookup - first pass failed, subsequent passes successful.
  8. Same but with refresh only on first & third pass of the lookup - all passes failed.
  9. Same but with refresh only on first, second & fourth pass of the lookup - first pass failed, subsequent passes successful.
  • Separately refreshing between any of these did not change the results above.
  • Waiting for a period of time did affect things... for example, for # 7 above if I waited around 7 minutes from the last test, all passes were successful (even the first one)!

I was very careful to record these results accurately. It does appear that in addition to the sequence of the code, that the time in between execution is playing a role as well making this even more difficult to troubleshoot in actual use.

 

Bottom line, a lookup should find the last record without having to wait 7-10 minutes. Unless the lookup was executed literally at the exact moment the record was added (before the write was complete) it should be found, similar to the way a gallery can display it moments after it is added.

 

In any event, I hope this is helpful and looking forward to hearing from you.

 

Code

Relevant part of "Operation 1" button code used for the steps above. 

    //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
        )
    );

        //find last qualifying record by looking up the first one in a sorted, filtered set
    Refresh(Events);
    Set(varPreviousEventThirdPass,
        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(varPreviousEventFourthPass,
        LookUp(Sort(Events,ID, Descending),               
            EventClass = varCurrentEventClass && TaskID = varTask.ID
        )
    );

Example

This shows step 1 results from above

 

LookupNotFindingLastRecord.jpg

 

Session info

Session ID: 09994b95-6acb-4207-a42b-3101d494e4d4
PowerApps 3.18111.15

Thank you, @PhilD!

 

The behavior is strange and hard to reproduce, which makes it hard for us to investigate the issue. You've provided a ton of information for us though, thank you once again! I'm going to let the area experts for this part of the product investigate with the information you've genrously provided.

- Paul C.
Software Engineer on PowerApps

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 (1,589)