Hi
Have set up an excel table in sharepoint with dates for mid, final and extended probation's of staff, added additional columns showing reminder dates at 7 days before, 1 day before etc created individual flows that reads the date in the appropriate reminder columns, compares to today's date and send e-mail reminder to those who need to carry out the reviews if the date matches, so have 6 flows as below
Extended Probation 1st Reminder
Extended Probation Review 2nd reminder
Mid Probation 1st Reminder
Mid Probation 2nd Reminder
Final Probation 1st Reminder
Final Probation 2nd Reminder
They were all created as copy's of each other (as after creating the first one and it working I just copied and amended the columns to read from), but only 2 of them work, (Mid Probation 1st Reminder and Mid Probation 2nd Reminder) the other 4 all fail with the following error
InvalidTemplate. Unable to process template language expressions for action 'Condition' at line '0' and column '0':
'In function 'formatDateTime', the value provided for date time string '45672' was not valid.
The datetime string must match ISO 8601 format.'.
Below is the working formulas for the "Mid Probation 1st Reminder" and "Mid Probation 2nd Reminder" as an example
formatDateTime(items('Apply_to_each_4')?['Mid Reminder Date 1 (7 Days)'],'dd/MM/yyyy')
formatDateTime(items('Apply_to_each_4')?['Mid Reminder Date 2 (1 day)'],'dd/MM/yyyy')
For all the others I have just copied the above and changed to the relevant columns needed from the table (as per below), but they all fail
formatDateTime(items('Apply_to_each_4')?['Final Reminder Date 1 (7 Days)'],'dd/MM/yyyy')
formatDateTime(items('Apply_to_each_4')?['Final Reminder Date 2 (1 day)'],'dd/MM/yyyy')
formatDateTime(items('Apply_to_each_4')?['Extended Date 1 (7 days)'],'dd/MM/yyyy')
formatDateTime(items('Apply_to_each_4')?['Extened Date 2 (1 day)'],'dd/MM/yyyy')
The table is all formatted exactly the same for all the dates (screenshot below), so I'm scratching my head as to why 2 work, but 4 don't?

Any help appreciated
Thanks