Skip to main content

Notifications

Community site session details

Community site session details

Session Id : dsPYZYZXz/E4Blq02poEuR
Power Automate - Building Flows
Unanswered

ISO dates from Excel only working in test mode, not in Run mode

Like (0) ShareShare
ReportReport
Posted on 25 Sep 2023 07:39:27 by 99

Hi!

 

I'm having trouble getting a Date field from Excel to be returned in ISO format. While it works in "test" mode, it does not work in live/run mode.

 

Some backstory: I've created a flow to export data from one of our internal systems via an API, and write the resulting data to an Excel file. The API connector allows me to request data for a specific time period. To ensure I always request the necessary results, even if the flow would have failed once, I start my flow by reading the existing Excel file, getting the highest "Last Updated Date" and using that as the starting date range.

 

When extracting this data/Date from Excel, something strange is occuring. When I "test" the flow, it all works perfectly. The flow connects to the excel, gets the TOP 1 record, on Last Updated Date descending, and returns it in ISO mode.

LLinx_1-1695624521531.png

 

The following Compose step gets the first() row from the excel and extracts the date from it, and formats it to the correct format I need.

formatDateTime(

first(outputs('List_rows_present_in_a_table')?['body/value'])['LastUpdatedDate'],

'yyyy-MM-dd hh:mm:ss')

When running this flow in "Test mode", it works perfectly.

LLinx_2-1695627212466.png

Without doing any changes, if I run the same flow on the schedule, or clicking the "Run" button, it fails.

LLinx_3-1695627268208.png

LLinx_4-1695627308525.png

Unable to process template language expressions in action 'First_Date' inputs at line '0' and column '0': 'In function 'formatDateTime', the value provided for date time string '45194.275' was not valid. The datetime string must match ISO 8601 format.'.

And indeed, the returned json from Excel returns the date as a number when in Run mode:

LLinx_5-1695627381985.png

 

While it returns the date as ISO date in "Test" mode.

LLinx_6-1695627429372.png

 

Has anyone else had this issue before? Any ideas on how to resolve this?

  • pecan008 Profile Picture
    3 on 21 May 2024 at 09:13:46
    Re: ISO dates from Excel only working in test mode, not in Run mode

    Thanks! It seems it might be root cause for my troubles however it seems no only blank cells are causing this but also cells with text instead of date.

    Any clues how to solve this?

    Peter

  • wskinnermctc Profile Picture
    6,517 Super User 2025 Season 1 on 28 Sep 2023 at 13:24:58
    Re: ISO dates from Excel only working in test mode, not in Run mode

    I can't explain why there is a difference between test and run.

    However, I know people can have issues when the Excel date is in dd-M-yyyy (European?) format. Once again, I don't have an explanation for that.

     

    I guess you will just have to use the dates as Serial and then convert them into ISO within the flow. So set the option to Serial instead of ISO 8601 and convert all of them.

     

    If you check part of my solution in this post about blank excel dates it shows how to convert serial to ISO 8601.

     

    To convert the Serial dates to a format that can be used by SharePoint the expression addDays() or addSeconds() has to be used. There are many posts on converting dates that can be found. For my example I’m going to use the addSeconds() expression for both columns [‘Birth Date’] and [‘CSVReportLastUpdate’] since one column includes time and a bonus is the final result will be in a format that can be accepted by SharePoint without writing it out.

     

    The expression addSeconds() is adding the number of seconds to the date 1899-12-30 based on the Serial date and then formats it. If no additional formatting such as yyyy-mm-dd is added to the addSeconds() expression it will default to a ISO 8601 format that is readable by SharePoint so I don’t add any additional formatting.

     

    addSeconds('1899-12-30',int(formatNumber(mul(float(item()?['CSVReportLastUpdate']),86400),'0')))

     

    Or you can probably find other posts or google convert Serial to ISO. 

  • LLinx Profile Picture
    99 on 28 Sep 2023 at 07:26:42
    Re: ISO dates from Excel only working in test mode, not in Run mode

    I did some more troubleshooting for this topic.

     

    Recreating the Excel action in the flow did not change the result and still gave the same issue.

    Removing the Excel action, saving the flow, then readding the action did not change the result, still gave the same issue.

     

    In a completely new flow, outside of a Solution, doing the starting 4 actions works perfectly. When I add a new flow with these same steps to my Solution, that flow does not work.


    Outside of a solution, only the starting 4 actions work perfectly, also in "Run" mode:

    LLinx_0-1695884836371.png

    Note: I did not copy-paste any of these steps, but recreated them from scratch.

    LLinx_1-1695884875775.png

     

    However, after recreating the same steps in a new flow in the solution I was working in, it broke again. It looks like it's the combination of the Solution and the "Return dates as ISO" that is causing the issues, even when I configure the Excel connector in it's most simple form (without odata sort query & top parameters):

    LLinx_3-1695885846143.png

     

     

    It's starting to look like this is an actual bug, not something on the user side that is configured incorrectly, so I probably need to get in touch with MS support?

    LLinx_4-1695885920917.png

    (I did some very quick back-to-back Test => Run => Test for this, to show the flow is not edited 😊)

     

    If anyone else would have an other idea, please do let me know.

  • LLinx Profile Picture
    99 on 28 Sep 2023 at 06:38:50
    Re: ISO dates from Excel only working in test mode, not in Run mode

    Thanks for the response @wskinnermctc .

     

    Unfortunately, that's not the issue: The excel column only contains datetime values, there's no text or blank cells in there.

    LLinx_1-1695882991469.png

     

    It really seems related to "Test" vs "Run" and different behaviour from the Excel connector. I tried again today, without making any changes to the flow:

    LLinx_2-1695883116737.png

     

     

     

  • wskinnermctc Profile Picture
    6,517 Super User 2025 Season 1 on 25 Sep 2023 at 18:49:55
    Re: ISO dates from Excel only working in test mode, not in Run mode

    Thank you for the pictures, they are very helpful.

     

    Do you have any blank rows or any text in the Excel column LastUpdatedDate? 

     

    Power automate does a strange thing where it will read dates as ISO 8601 in an Excel column, but if there is a blank cell, it will read the remaining dates as Serial. 

    Similar to the blank is if there is text. It is like the change of data will disrupt how PA reads data.

     

    I don't know if this is your problem, but it is something to look at.

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

Understanding Microsoft Agents - Introductory Session

Confused about how agents work across the Microsoft ecosystem? Register today!

Warren Belz – Community Spotlight

We are honored to recognize Warren Belz as our May 2025 Community…

Congratulations to the April Top 10 Community Stars!

Thanks for all your good work in the Community!

Leaderboard > Power Automate - Building Flows

#1
stampcoin Profile Picture

stampcoin 91

#2
Michael E. Gernaey Profile Picture

Michael E. Gernaey 70 Super User 2025 Season 1

#3
David_MA Profile Picture

David_MA 48 Super User 2025 Season 1

Overall leaderboard