month()

This function returns the month part of a timestamp based on a given time zone (represented by a number from 1 to 12).

Bash
month(timestamp, timeZone) #Output: Number

Examples

Parser expression

Description

Bash
 %{month({issue.created}, RUN_AS_LOCAL)}

This example returns the month of the issue creation date as a number.

Given an issue that was created on March 25th, 2020 23:15:30, the returned value is 3.

Bash
%{month(stringToDate("2020-01-01 00:30","Europe/Berlin"),"UTC")}

This example returns the month part of the given date, the timezone is UTC.

Due to the time zone UTC, the output will be 12.

Additional information

Parameters used in this function

Parameter

Input (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

text

The time zone used for the calculation.

Output

This function returns a number


(books) Use cases and examples