Hello,
I am creating a csv file from an excel file and am having trouble keeping the US DateTime format ('start': '11/26/2020 11:13:05 AM') from my original format.

My flow is as following and as from the first "List rows present in a table" this date is transformed into a string
"start":"44161.4674189815"
that I cannot change back to the original format (MM-dd-yyyyTHH:MM).
I've tried to format the date in the Select action using this function
formatDateTime(item()?['start'],'g')
formatDateTime(item()?['start'],'MM-dd-yyyyTHH:MM')
and some other options but I keep getting the error "failed: 'In function 'formatDateTime', the value provided for date time string '44161.4674189815' was not valid. The datetime string must match ISO 8601 format.'.".
Can you please advise?