I created a flow that sends an HTML table to me, through Outlook, when changes are made to columns in a SharePoint List. However, if a date value is changed, the HTTP request in Power Automate always converts the date output to UTC format, as shown in the image below.
Below is the output from the first HTTP request. It is retrieving the previous version of the changed value.
The next output shown is retrieving the current version of the changed value.
Then, that output is sent to a "Select" step that populates the HTML table automatically.
Here is the HTML table step of the flow:
And here are the formulas for the "Select" step and the step itself.
replace(split(item(),':')[1],'"','') (This generates the previous value)
outputs('Send_an_HTTP_request_to_SharePoint_2')?['body']?[json(item())] (This generates the current value for the table)
Is it possible to change how the date appears in the HTML table without having to completely remake my flow?