Date formats in a Report sometimes mm/yy

How do I format the <<TODAY_>> field in my report template. As you can see the due dates in the report shows dd/mm/yyyy but the heading shows mm/dd/yyyy.

Also a user added a comment (shown in red) and his comment shows a date of entry in mm/dd/yyyy. In the app and in the google sheet it shows as dd/mm/yyyy.

To avoid confusion can I set dates to 8 May 2019 for example? How would this expression look for the report template?

Solved Solved
0 11 1,512
1 ACCEPTED SOLUTION

@Riki_Armstrong
Here is the template language

<<CONCATENATE(RIGHT(โ€œ0โ€&DAY(TODAY()),2),"/",RIGHT(โ€œ0โ€&MONTH(TODAY()),2),"/",YEAR(TODAY()))>>

As long as you specify between left & right double chevrons, you can specify/construct any AppFormula expression you like in a workflow template. In above expression you can replace TODAY() with any [DATE] column you like in your template:

<<CONCATENATE(RIGHT(โ€œ0โ€&DAY([Due Date]),2),"/",RIGHT(โ€œ0โ€&MONTH([Due Date]),2),"/",YEAR([Due Date]))>>

View solution in original post

11 REPLIES 11
Top Labels in this Space