Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.


UI Text Box
sizemedium
typeinfo

This function returns a number representing the timestamp for the last day of the month of a given timestamp in a specific time zone.

The timestamp returns 00:00 i.e., the very beginning of the last day.


Code Block
languagebash
titleSyntax
linenumberstrue
lastDayOfTheMonth(timestamp, timeZone) #Output: Number


UI Expand
titleExamples


Parser expressionDescription


Code Block
languagebash
linenumberstrue
lastDayOfTheMonth(2020/02/05 11:31, LOCAL)


This example returns: 20172020/02/28 00:00.


Code Block
languagebash
linenumberstrue
lastDayOfTheMonth({issue.created}, LOCAL)


This example returns the timestamp of the last day of the month an issue was created.



UI Expand
titleAdditional information

Parameters used in this function

ParameterInput (data type)Description
timestamp

Status
subtletrue
titlenumber

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

Status
subtletrue
titletimezone

The time zone used for the calculation. 


UI Text Box
typetip

Work days might depend on the time zone - it might be Sunday on the west coast of the US while at the same time it's already Monday in Australia. 



UI Expand
titleOutput

This function returns a

Status
subtletrue
titleNumber



Use cases and examples

Page properties report
firstcolumnUse case
headingsJWT feature, Workflow function, Field type, Automated action, Parser functions
cqllabel = "parser_fun_lastdayofthemonth" and space = currentSpace()


Page properties
hiddentrue
id1


Parser function cloud
Map(question)
Notes

Workaround

Code Block
languagebash
%{stringToDate(toString(year({issue.created}, RUN_AS_LOCAL)) + "/" +
toString(month({issue.created}, RUN_AS_LOCAL)) + "/" +
toString(getMatchingValue(month({issue.created}, RUN_AS_LOCAL),
[1,2,3,4,5,6,7,8,9,10,11,12], [31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31])), RUN_AS_LOCAL)}





Page properties
hiddentrue



Status
Tech review

Status
colourGreen
titledone

Style guide

Status
colourGreen
titledone

Status
titletodo
Status
colourYellow
titleReady for review
Status
colourGreen
titledone
Status
colourRed
titleflagged



Page properties
hiddentrue


Short description

Returns the last day of the month of a given timestamp.

Output

Status
subtletrue
titlenumber

Available since

Status
subtletrue
colourBlue
title2.3.3

Label