Oct 13 2023 11:33 AM
I have a power automate that is use to upload a UTC to my excel table. This is used to track when an invoice is received if the invoice is not received within the certain date it reads true and nothing happens if false it sends an email.
Excel accepts my formula but doesnt read it as a date. Here are some screen shots.
Any Ideas?
Oct 13 2023 01:08 PM
SolutionSuch formula
returns the text, not date. To convert into actual date just add +0 at the end of the formula or warp it by DATEVALUE().
As variant on Power Automate site convert datetime zone into date like
formatDateTime(body()?['Date'], 'yyyy-MM-dd')
Oct 13 2023 03:43 PM
Oct 13 2023 05:09 PM
Oct 14 2023 05:27 AM
@Nicktrom55 , you are welcome