cancel
Showing results for 
Search instead for 
Did you mean: 
Reply
ahmedhakam13
Regular Visitor

My Flow never stops the do until loop

Hi Power Automate Community,

 

I'm a newbie in Power Automate and I'm trying to create a very simple flow based on a sharepoint list that keeps sending a reminder through mail for when an item value is modified to a specific value to change it back. I followed several tutorials and did create the flow and it looks completely logical in my head yet whenever I test it. It starts sending the reminder e-mails but never stops when I change the value back. It has been killing me for the past two days and I have tried everything I can think of or find online, it is supposed to be extremely simple yet it's not working. please help me.

 

P.S. it works when I use a manual trigger instead. And I believe this might be the issue but I changed the concurrency of the trigger to 1 and it still didn't work.

 

ahmedhakam13_0-1670180590551.png

ahmedhakam13_1-1670180622496.png

1 ACCEPTED SOLUTION

Accepted Solutions

@ahmedhakam13 The loop isn't exiting because you only get the data from your SharePoint list once (on the trigger). It will use that static data throughout your flow.

 

What you will need to do is add a Get item action between your Delay and your Condition using the ID from your Trigger. Then in the Condition you would use the field from Get item instead of your Trigger. See flow example below that should visualize what you need in this instance.

 

grantjenkins_0-1670282716523.png

 


----------------------------------------------------------------------
If I've answered your question, please mark the post as Solved.
If you like my response, please consider giving it a Thumbs Up.

View solution in original post

10 REPLIES 10
v-dezhili-msft
Microsoft
Microsoft

Hi @ahmedhakam13 ,

Could you please provide a higher resolution screenshot?
The reason your process won't stop is because your Condition action is always false.
You keep comparing the same value.

 

Best Regards,

Dezhi

Hi @v-dezhili-msft,

 

Thank you so much for your quick reply and I apologize for the low resolution screenshots. I did not realize how bad they are until now. please find higher quality ones below. 

 

ahmedhakam13_0-1670233654285.png

ahmedhakam13_1-1670233683809.pngahmedhakam13_2-1670233697892.pngahmedhakam13_3-1670233713675.pngahmedhakam13_4-1670233731648.png

 

 

Regarding the condition, I do not think what you are saying is true. I set the variable to true whenever the item value changes from Unavailable. Please check again with the better screenshots and guide me if possible. 

 

Regards,

Ajinder31
Continued Contributor
Continued Contributor

Hi @ahmedhakam13 , As mentioned by @v-dezhili-msft the flow never stops because Condition is always false. I understand that value might be changed in the background but in flow we are not getting the updated value and it keeps iterating on the same value.

Based on my understanding of flow, We don't require a Do until loop as flow will get triggerred whenever Item is modified. So just having a condition and subsequent steps should work fine. 

Please let me know if I'm not making sense.  

--------------------------------------------------------------------------------------
If I have answered your question, please mark your post as Solved.
If you like my response, please give it a Thumbs Up.

Hi @ahmedhakam13 

 

Could you please show your run history?
Did you update the fields I circled below in the next steps?
What type of output is this field?
What I think is because your condition action is always false, so the flow does not run the Set variable action, and your Boolean variable will not be set to true.

ahmedhakam13_2-1670233697892.png

Best Regards,

Dezhi

Hi @Ajinder31,

 

If I'm changing the value in the sharepoint list shouldn't that reflect on the flow? if it does then in the condition that is inside the do until the boolean value should change from false to true when the user changes the sharepoint list item value. Please correct me here if I'm wrong but if I want to keep reminding the user to change the value on the sharepoint list via mail then I must use a do until. If there's another way to do so please advise. 

 

Hi @v-dezhili-msft,

 

Below is my run history, the succeeded runs are the ones were I change the value to anything but "Unavailable" as you might have guessed. 

ahmedhakam13_0-1670238145661.png

 

Yes I do update the circled field manually during the run. 

The field type is "choice" and it has four choices one of them is "Unavailable".

Your answer returns me to the same question I asked @Ajinder31 If I'm changing the value in the sharepoint list shouldn't that reflect on the flow within the do until?

 

 

Ajinder31
Continued Contributor
Continued Contributor

Hi @ahmedhakam13 , If we change value in SharePoint list it will trigger the flow everytime item is modified as configured in the flow. However the value inside the DoUntil will always remain same as it's value at given point in time of specific trigger. If we will make some changes in List and follow the flow history, we will be able to understand the how it is working. 

As explained, Flow will trigger whenever values changes in the list. So we can remove Do Until and use Condition with subsequents actions configured. In Condition, check for current value of field and if it satisfy the condition then do the required operation. 

--------------------------------------------------------------------------------------
If I have answered your question, please mark your post as Solved.
If you like my response, please give it a Thumbs Up.

grantjenkins
Super User
Super User

@ahmedhakam13 Looks like the others are helping you with your Do Until loop. I just wanted to understand what you're trying to achieve here. If you want to keep emailing someone to change a value back if they change it to a certain value, couldn't you just have Power Automate change it back automatically without having to email the person to do it manually? Just trying to work out if there's a better way to achieve what you're doing.


----------------------------------------------------------------------
If I've answered your question, please mark the post as Solved.
If you like my response, please consider giving it a Thumbs Up.
ahmedhakam13
Regular Visitor

Hi @Ajinder31, thanks for your answer but your proposed solution does not give me a mail reminder option for the user if he does not change the value. I understand what you're saying but still I did a test using a manual trigger instead of the automated value trigger and it was working fine and the DoUntil read the item value modification which is why I'm confused here. So my question is, what is different between a manual trigger and an automated one that makes the DoUntil unable to read my modification? 

Please have a look at the video in the link : https://www.youtube.com/watch?v=cj_gZ5zTNSo

it is similar to what I'm trying to achieve but using a manual trigger instead.

P.S. I also read about the concurrency issue and I applied it to my case which means I never get two flows running at the same time. 

 

Hi @grantjenkins, thank you for your insight. I'm still building the flow and it's not just simply returning the value to the old case. I'm expecting the user to choose one of other three options apart from unavailable when he receives that notification from his manager and change other values accordingly too. I understand that it might not seem logical when you look at it the first time but hopefully it will be after some alterations, that if it works.

@ahmedhakam13 The loop isn't exiting because you only get the data from your SharePoint list once (on the trigger). It will use that static data throughout your flow.

 

What you will need to do is add a Get item action between your Delay and your Condition using the ID from your Trigger. Then in the Condition you would use the field from Get item instead of your Trigger. See flow example below that should visualize what you need in this instance.

 

grantjenkins_0-1670282716523.png

 


----------------------------------------------------------------------
If I've answered your question, please mark the post as Solved.
If you like my response, please consider giving it a Thumbs Up.
ahmedhakam13
Regular Visitor

It worked and I understand the solution as well. 

 

Thank you so much @grantjenkins!!

 

Helpful resources

Announcements

Power Platform Connections - Episode 7 | March 30, 2023

Episode Seven of Power Platform Connections sees David Warner and Hugo Bernier talk to Dian Taylor, alongside the latest news, product reviews, and community blogs.     Use the hashtag #PowerPlatformConnects on social media for a chance to have your work featured on the show.  

Announcing | Super Users - 2023 Season 1

Super Users – 2023 Season 1    We are excited to kick off the Power Users Super User Program for 2023 - Season 1.  The Power Platform Super Users have done an amazing job in keeping the Power Platform communities helpful, accurate and responsive. We would like to send these amazing folks a big THANK YOU for their efforts.      Super User Season 1 | Contributions July 1, 2022 – December 31, 2022  Super User Season 2 | Contributions January 1, 2023 – June 30, 2023    Curious what a Super User is? Super Users are especially active community members who are eager to help others with their community questions. There are 2 Super User seasons in a year, and we monitor the community for new potential Super Users at the end of each season. Super Users are recognized in the community with both a rank name and icon next to their username, and a seasonal badge on their profile.  Power Apps  Power Automate  Power Virtual Agents  Power Pages  Pstork1*  Pstork1*  Pstork1*  OliverRodrigues  BCBuizer  Expiscornovus*  Expiscornovus*  ragavanrajan  AhmedSalih  grantjenkins  renatoromao    Mira_Ghaly*  Mira_Ghaly*      Sundeep_Malik*  Sundeep_Malik*      SudeepGhatakNZ*  SudeepGhatakNZ*      StretchFredrik*  StretchFredrik*      365-Assist*  365-Assist*      cha_cha  ekarim2020      timl  Hardesh15      iAm_ManCat  annajhaveri      SebS  Rhiassuring      LaurensM  abm      TheRobRush  Ankesh_49      WiZey  lbendlin      Nogueira1306  Kaif_Siddique      victorcp  RobElliott      dpoggemann  srduval      SBax  CFernandes      Roverandom  schwibach      Akser  CraigStewart      PowerRanger  MichaelAnnis      subsguts  David_MA      EricRegnier  edgonzales      zmansuri  GeorgiosG      ChrisPiasecki  ryule      AmDev  fchopo      phipps0218  tom_riha      theapurva  takolota     Akash17  momlo     BCLS776  Shuvam-rpa     rampprakash  ScottShearer     Rusk  ChristianAbata     cchannon  Koen5     a33ik  Heartholme     AaronKnox  okeks      Matren   David_MA     Alex_10        Jeff_Thorpe        poweractivate        Ramole        DianaBirkelbach        DavidZoon        AJ_Z        PriyankaGeethik        BrianS        StalinPonnusamy        HamidBee        CNT        Anonymous_Hippo        Anchov        KeithAtherton        alaabitar        Tolu_Victor        KRider        sperry1625        IPC_ahaas      zuurg    rubin_boer   cwebb365   Dorrinda   G1124   Gabibalaban   Manan-Malhotra   jcfDaniel   WarrenBelz   Waegemma   drrickryp   GuidoPreite    If an * is at the end of a user's name this means they are a Multi Super User, in more than one community. Please note this is not the final list, as we are pending a few acceptances.  Once they are received the list will be updated. 

Register now for the Business Applications Launch Event | Tuesday, April 4, 2023

Join us for an in-depth look into the latest updates across Microsoft Dynamics 365 and Microsoft Power Platform that are helping businesses overcome their biggest challenges today.   Find out about new features, capabilities, and best practices for connecting data to deliver exceptional customer experiences, collaborating, and creating using AI-powered capabilities, driving productivity with automation—and building towards future growth with today’s leading technology.   Microsoft leaders and experts will guide you through the full 2023 release wave 1 and how these advancements will help you: Expand visibility, reduce time, and enhance creativity in your departments and teams with unified, AI-powered capabilities.Empower your employees to focus on revenue-generating tasks while automating repetitive tasks.Connect people, data, and processes across your organization with modern collaboration tools.Innovate without limits using the latest in low-code development, including new GPT-powered capabilities.    Click Here to Register Today!    

Check out the new Power Platform Communities Front Door Experience!

We are excited to share the ‘Power Platform Communities Front Door’ experience with you!   Front Door brings together content from all the Power Platform communities into a single place for our community members, customers and low-code, no-code enthusiasts to learn, share and engage with peers, advocates, community program managers and our product team members. There are a host of features and new capabilities now available on Power Platform Communities Front Door to make content more discoverable for all power product community users which includes ForumsUser GroupsEventsCommunity highlightsCommunity by numbersLinks to all communities Users can see top discussions from across all the Power Platform communities and easily navigate to the latest or trending posts for further interaction. Additionally, they can filter to individual products as well.   Users can filter and browse the user group events from all power platform products with feature parity to existing community user group experience and added filtering capabilities.     Users can now explore user groups on the Power Platform Front Door landing page with capability to view all products in Power Platform.      Explore Power Platform Communities Front Door today. Visit Power Platform Community Front door to easily navigate to the different product communities, view a roll up of user groups, events and forums.

Microsoft Power Platform Conference | Registration Open | Oct. 3-5 2023

We are so excited to see you for the Microsoft Power Platform Conference in Las Vegas October 3-5 2023! But first, let's take a look back at some fun moments and the best community in tech from MPPC 2022 in Orlando, Florida.   Featuring guest speakers such as Charles Lamanna, Heather Cook, Julie Strauss, Nirav Shah, Ryan Cunningham, Sangya Singh, Stephen Siciliano, Hugo Bernier and many more.   Register today: https://www.powerplatformconf.com/   

Users online (3,640)