Unable to process template language expressions in action 'Compose_2' inputs at line '0' and column '0': 'In function 'formatDateTime', the value provided for date time string '45605.0555555556' was not valid. The datetime string must match ISO 8601 format.'.
It looks like you are getting back a String value of that Date in Ticks and thats the issue.
You need to convert it, firstly to a number (get rid of the .0555 garabage), and then turn those Ticks into a DateTime.
That's why its not working
Also when you do this, you need to make sure that you have a DateTime for both in the same format or use FormateDateTime in the flow to make them the same.
To convert from that to a number do int(yourstringhere)
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.