Skip to main content

Notifications

Data Operations – Compose: Format Date and Time

What is the definition of Compose action with Microsoft Flow?

Use the Data Operations – Compose action to save yourself from entering identical data multiple times when you’re designing a flow. What does this mean in practice? You can shape the data that has been generated by an above action, by using an expression or adding data that you want to use several times in your flow.

In this example, I will explain the expression Date and Time, with an example of each date and time expression.

 

The flow what is it doing?

The flow that I will use to demonstrate some of the date and time expressions has the following actions and connectors:

  • Outlook – When a new email arrives
  • Data Operations – Compose
  • SharePoint – Create file

The flow will be triggered by an email that has been send to an inbox from a certain sender and with an attachment and subject “SharePoint”. When the flow has been triggered, we will create a date and time format that will be attached to the file name on creation in the SharePoint document library.

Flow overview:

Flow02-02.pngHigh level view of the flowFlow02-01.png

I will explain here a view of them:

Expression: formatDateTime(timestamp,format)

Returns a string in date format

Expression string:

StringformatDateTime(triggerBody()?['DateTimeReceived'],'yyyyMMdd')
Result20180930_Flow_Test_File.txt

This expression will get “Date Time Received” from the email and format will be change to yyyyMMdd and attached to the new file name that will be create in SharePoint.

With:

yyyy = year (example: 2018)
MM = month (example: 08)
dd = day (example: 11)

Expression: utcNow()

Returns the current Coordinated Universal Time timestamp as a string

Expression string:

StringutcNow()utcNow(‘yyyy’)
Result2018-09-30T20_15_18.0324638Z_Flow_Test_File.txt2018_Flow_Test_File.txt
StringutcNow(‘dd’)utcNow(‘MM’)
Result30_Flow_Test_File.txt09_Flow_Test_File.txt
StringutcNow(T’)utcNow(‘t’)
Result8_35_16 PM_Flow_Test_File.txt8_36 PM_Flow_Test_File.txt

Combination is also possible with the formatDateTime – expression an example:

StringformatDateTime(utcNow(),’yyyy-MM-dd’)
Result20181001_Flow_Test_File.txt

Expression: GetFutureTime(interval,TimeUnit,Format?)

Returns a timestamp that is the current time plus the specified time interval.

Interval need to be an integer and the time unit: "Second", "Minute", "Hour", "Day", "Week", "Month", "Year"

Expression string:

StringgetFutureTime(5,'Hour','yyyy-MM-ddThh:mm:ss')
Result2018-10-01T02:52:25_Flow_Test_File.txt

More information about Date and Time formatting can be found it's LINK

I hope you have found the usefully to add some date and time formats to your Microsoft Flow.

Flow02-04.png

REMARK

String need to be entered by using the expression selection. I had already the experience when typing the text manually it’s not accepting the content. So select the expression and add them automatically in the Compose field to edit as appropriate.

Flow02-03.png

 

Comments

*This post is locked for comments