web
You’re offline. This is a read only version of the page.
close
Skip to main content

Notifications

Announcements

Community site session details

Community site session details

Session Id :
Power Platform Community / Forums / Power Automate / Flow showing as run su...
Power Automate
Unanswered

Flow showing as run successfully but nothing has updated

(1) ShareShare
ReportReport
Posted on by 2
Hi all - hoping to receive some guidance here as I can't pin down what I'm missing.  I have a flow that runs successfully, and seemingly by the set up, it should be updating my Sharepoint column values for the IDs that meet the criteria, but it is not, and I am stumped.
 
I have flow that is set to run on an occurrence every Sunday.  It is supposed to get a list of records where the "DueDate" column has a value that is less than or equal to today.  (On checking the flow run history, I can verify by the number of records in the run that this step is working properly).
 
From here, the flow is supposed to check for records where the "Cadence" column is set to "Weekly" and for those records, update the status to "Not Started" and update the "DueDate" column to the previous value plus seven days.  For records where the "Cadence" is not "Weekly," do nothing.  Net effect here is to essentially reset the weekly tasks for the following week.
 
Here is a snapshot of my overall flow set up - 
 
Here is the Condition step - 
 
And here is the Update Item step for true conditions (two screenshots to capture all the parameters) - 
 
In terms of the formula I have applied for the Due Date update, it is as follows - 
addDays(items('Foreach')?['DueDate'], 7)
 
Any help would be much appreciated as I can't figure out why this flow is seemingly running fine, but no updates are being made.
Categories:
I have the same question (0)
  • creativeopinion Profile Picture
    10,502 Super User 2025 Season 2 on at
    It's always best practice to filter out your items first before looping through them. In your case, You will need to use the internal column name of your Cadence column. Keep in mind that the internal column name may not always match the name displayed in your Sharepoint list. If you aren't sure how to get the Internal Column name, you can refer to this section of one of my YT Tutorials.
     
    Additionally, if your SharePoint list has more than 100 items, you’ll need to toggle on pagination. Not sure how to do that? Check out this section of one of my YT Tutorials.
     
    It would be helpful to see a screenshot of your last run in the Classic Designer. Toggle off the New Designer and click each action to expand it. Upload a screenshot of your flow. 
     
    In the meantime, you might be interested in these YT tutorials: 

    Are you easily stumped when working with Dates in Power Automate? In this Power Automate tutorial, I’ll show you how to compose an expression that will return a future date, a past date, how to count the number of days between two dates, how to check for a birthdate and anniversary date as well as tips and tricks when working with dates in Power Automate. I’ll cover some common use cases and concepts that can help you to build better Power Automate flows.

    Feel free to skip ahead using the timestamps listed below. I’ve also linked a few other tutorials that you might be interested in as well.

    IN THIS VIDEO:
    ✓ 4 Date Functions You Need to Know
    ✓ How to use the Convert Time Zone Action
    ✓ How to Get a Future Date
    ✓ How to Get a Past Date
    ✓ How to Return SharePoint Items Due in a Number of Days
    ✓ How to Return SharePoint Items Due within a Date Range
    ✓ How to write a Filter Query for SharePoint Items Due in 30, 60 and 90 Days
    ✓ How to Calculate the Number of Days between Two Dates
    ✓ How to Check for a Birthdate and Anniversary Date
    ✓ How to work with Dates and Times in Excel
    ✓ How to use a Manual Trigger with Date Input
    ✓ How to Output Dynamic Text with an Expression
    ✓ How to Check if a Date Falls on a Weekend
     
    ---

    In this Power Automate tutorial, I explore 5 frequently asked questions that pop up when troubleshooting a flow. If you’d like to to level up your Power Automate flow skills and learn how to troubleshoot your Power Automate flow—this tutorial is for you!

    IN THIS VIDEO:
    ✓ How to troubleshoot a false Condition action result
    ✓ How to get dynamic content when it isn’t selectable from the list of dynamic content
    ✓ How to troubleshoot an Apply to Each action that isn’t looping through
    ✓ How to troubleshoot a skipped Apply to Each action
    ✓ How to troubleshoot a Filter Query
    ✓ How to use a SharePoint yes/no column in a Filter Query
    ✓ How to use Compose actions to troubleshoot a Power Automate flow
    ✓ How to troubleshoot multiple emails being sent
    ✓ How to troubleshoot multiple Teams messages being sent

     
    Hope this helps!

    Consider giving me a ❤️ if you liked my response!

    👉 Level up your Power Automate skills by checking out my tutorials on YouTube
    👉 Tips and Tricks on TikTok and Instagram
  • Suggested answer
    Nived_Nambiar Profile Picture
    18,129 Super User 2025 Season 2 on at
     
    I would recommend to check flow execution results for any of the run and see how the steps in flow is being followed, that would really help you to understand how the flow is currently working, based on that you can figure out what's the issue.
     

    Thanks & Regards,
    Nived N

    Stay connected:
    LinkedIn | YouTube | Blogs

    Was this answer helpful?
    If yes, please mark it as the solution by selecting the checkbox in the discussion thread.
    Your feedback motivates me to keep contributing. Thank you!

     
     
  • Suggested answer
    Riyaz_riz11 Profile Picture
    3,844 Super User 2025 Season 2 on at

    Primary Issues and Solutions:

    1. Missing Required ID Field

    The most common reason for "Update Item" appearing to run successfully but not updating anything is that you must have the unique ID field specified, and all mandatory fields need to be populated when updating a SharePoint item Data SavvyTom Riha.

    Solution: In your "Update Item" action, make sure you're specifying the ID field. Add this to your parameters:


    • ID: items('Foreach')?['ID']

    •  

    2. Missing Required/Mandatory Fields

    When updating an item in a SharePoint list, you need to specify values for all mandatory fields, not just the ones you want to change C# CornerTom Riha.

    Solution: Check your SharePoint list settings and include all required fields in your Update Item action, even if you're not changing their values. Use dynamic content to populate them with their current values.

    3. Date Format Issues

    Your addDays() formula looks correct, but date formatting can cause silent failures.

    Solution: Try using this format instead:

    formatDateTime(addDays(items('Foreach')?['DueDate'], 7), 'yyyy-MM-ddTHH:mm:ssZ')

    4. Team Field Configuration

    I notice you have a "Team" field that appears to be a People/Group field. These can be problematic in updates.

    Solution: Ensure the Team field is properly formatted. If it's a People field, you might need to use:

     
    items('Foreach')?['Team']?['Email']

    Recommended Troubleshooting Steps:

    Step 1: Add Error Handling

    Add a "Configure run after" setting to your Update Item action to catch failures:


    • Click the three dots on your Update Item action

    • Select "Settings"

    • Check "is failed" and "has timed out" in addition to "is successful"


    •  

    Step 2: Add Compose Actions for Debugging

    Before your Update Item, add "Compose" actions to verify your data:


    • Compose 1: items('Foreach')?['ID'] (to verify you have the ID)

    • Compose 2: items('Foreach')?['DueDate'] (to verify the current date)

    • Compose 3: addDays(items('Foreach')?['DueDate'], 7) (to verify the new date)

    •  

    Step 3: Simplify the Update

    Try updating just one field at a time to isolate the issue:


    1. First, try updating only the Due Date

    2. Then try updating only the status

    3. Once individual updates work, combine them


    4.  

    Step 4: Check SharePoint List Permissions

    Ensure your flow has proper permissions to update the SharePoint list and that there are no checkout requirements or version control issues.

     

    Step 5: Use HTTP Request as Alternative

    If the standard Update Item continues to fail, you can use HTTP requests to update single columns without requiring all mandatory fields Tom RihaAnnajhaveri.

    Try implementing these solutions starting with adding the ID field and required fields to your Update Item action. This resolves the majority of "silent failure" cases with SharePoint updates in Power Automate.

     

    Claude does not have the ability to run the code it generates yet.

    If I have answered your question, please mark it as the preferred solution ✅ . If you like my response, please give it a Thumbs Up 👍.
    Regards,
    Riyaz

Under review

Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.

Helpful resources

Quick Links

Forum hierarchy changes are complete!

In our never-ending quest to improve we are simplifying the forum hierarchy…

Ajay Kumar Gannamaneni – Community Spotlight

We are honored to recognize Ajay Kumar Gannamaneni as our Community Spotlight for December…

Leaderboard > Power Automate

#1
Michael E. Gernaey Profile Picture

Michael E. Gernaey 522 Super User 2025 Season 2

#2
Tomac Profile Picture

Tomac 364 Moderator

#3
abm abm Profile Picture

abm abm 243 Most Valuable Professional

Last 30 days Overall leaderboard