Re: Date from Email to SP via Flow
Hi @Taylope1,
I tried formatDateTime() function to convert your timestamp into one could be used in SharePoint, but it not ISO 8601 format, so it failed.
As a workaround, you could break the timestamp and re-collage by using split() function, for example:
1. Use split(outputs('Compose'),' ') could divide the timestamp into date and time (30-09-2020 and 10:01)
2. Use split(split(outputs('Compose'),' ')[0],'-') could divide the date into day, month and year (30, 09 and 2020)
3. Then re-collage them inorder, yyyy-MM-dd hh:ss

You could create a simple flow as below, and copy the following code and paste it into Compose2 action to have a try:
@{split(split(outputs('Compose'),' ')[0],'-')[2]}-@{split(split(outputs('Compose'),' ')[0],'-')[1]}-@{split(split(outputs('Compose'),' ')[0],'-')[0]} @{split(outputs('Compose'),' ')[1]}
Best Regards,
Community Support Team _ Lin Tu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.