Hello,
How would I convert the following into a more readable time?
Solved! Go to Solution.
Hi @trini272021
The problem we have with the formatDateTime() is that the date comes from the approval as a string, so you may need to split it and rearrange it to the correct format to use it as a valid DateTime string.
If you want to know a little more about the ISO 8601 format check out the following thread.
Moving on, I made a work around for your problem using the action "append to string variable".
formatDateTime(outputs('Start_and_wait_for_an_approval')?['body/completionDate'], 'dd/MM/yyyy HH:mm:ss')
Hope this can help you, any questions let me know.
Cheers.
Hi @trini272021
What you want to do is change the format of "ResponseDate" to another format? In what kind of format do you get the "ResponseDate"?
For example, this option can help.
formatDateTime('2020-02-05T10:10:00Z','yyyy-MM-dd')
will return
2020-02-05
This documentation could help you, let me know if you have any questions.
How to customize or format Date and Time values in a flow - Power Automate | Microsoft Docs
Hello,
The format I get is:
How do I incorporate the conversion in my string?
Select the tab Expression and write "formatDateTime('ResponseDate','yyyy-MM-dd')"
Let me know if that helps.
Cheers.
Hi,
So to keep everything else in my string I tried the following but it didn't work:
concat('ApproverName: ',item()?['responder']?['displayName'],' formatDateTime('ResponseDate','yyyy-MM-dd')',item()?['responseDate'],' Comment: ',item()?['comments'],'</br>',variables('AllResponses'))
Can you share a screenshot of your flow?
concat('ApproverName: ',item()?['responder']?['displayName'],' ResponseDate: ',item()?['responseDate'],' Comment: ',item()?['comments'],'</br>',variables('AllResponses'))
Here is where I got the example from - https://powerusers.microsoft.com/t5/Building-Flows/Approvals-Multiple-Approvers-How-to-capture-all-t...
Hi @trini272021
The problem we have with the formatDateTime() is that the date comes from the approval as a string, so you may need to split it and rearrange it to the correct format to use it as a valid DateTime string.
If you want to know a little more about the ISO 8601 format check out the following thread.
Moving on, I made a work around for your problem using the action "append to string variable".
formatDateTime(outputs('Start_and_wait_for_an_approval')?['body/completionDate'], 'dd/MM/yyyy HH:mm:ss')
Hope this can help you, any questions let me know.
Cheers.
The first Microsoft-sponsored Power Platform Conference is coming in September. 100+ speakers, 150+ sessions, and what's new and next for Power Platform.
Announcing a new way to share your feedback with the Power Automate Team.
Learn to digitize and optimize business processes and connect all your applications to share data in real time.
User | Count |
---|---|
69 | |
27 | |
22 | |
15 | |
13 |
User | Count |
---|---|
132 | |
43 | |
42 | |
34 | |
31 |