This function returns the day of the year of any given timestamp.

Syntax
dayOfTheYear(timestamp, timeZone) #Output: Number
Examples
Parser expressionDescription
dayOfTheYear({issue.created}, LOCAL)

This example will return the day of the year of the issue's creation date.

If the creation date was February 2nd, 2011, the output would be 33.

Additional information

Parameters used in this function

ParameterInput (data type)Description
timestamp

NUMBER

The parameter must be valid timestamp. Usually this value is retrieved from a field (e.g. due date, created date).
timeZone

TIMEZONE

The time zone used for the calculation. 

Output

This function returns a NUMBER


Use cases and examples