You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 4 Next »

The function returns a NUMBER representing the sum of all the time logged in issues in milliseconds.

Syntax
timeLogged(issue list issues) #Output : Number
Examples
Parser expressionDescription
timeLogged(subtasks())

The function returns a NUMBER representing the sum of time logged in the current issue's sub-tasks in milliseconds.

Additional information

Parameters used in this function

ParameterInput (data type)Description
<parameter>

DATA TYPE

Parameter description.
Output

The function returns a NUMBER


the function returns a NUMBER representing the sum of all the time logged in issues in time interval defined by timestamps datetime_ini and datetime_end and If one or both timestamps are null, then it is assumed that the time period has not low or high time limit respectively.

Logged time is returned in milliseconds.

Syntax
timeLogged(issue list issues, number datetime_ini, number datetime_end) #Output: Number
Examples
Parser expressionDescription
timeLogged(issuesUnderEpic(), datePart({00057}, LOCAL), addDays(datePart({00057}, LOCAL), 1, LOCAL))

The function returns a NUMBER representing the sum of time logged today in issues under current issue's Epic. Note that {00057} is field code for Current date and time.

Additional information

Parameters used in this function

ParameterInput (data type)Description
<parameter>

DATA TYPE

Parameter description.
<parameter>

DATA TYPE

Parameter description.
<parameter>

DATA TYPE

Parameter description.
Output

The function returns a NUMBER


The function Returns the NUMBER of all the time logged in issues by a user with the username user.

Logged time is returned in milliseconds.

Argument user can contain a single user name (not be confused with user's full name), or a comma separated list of usernames, group names or project role names.

Syntax
timeLogged(issue list issues, string user) #Output: Number
Examples
Parser expressionDescription
timeLogged(linkedIssues(), %{00003})

The function returns a NUMBER representing the sum of time logged by the assignee on linked issues.

%{00003}is field code for Assignee.

Additional information

Parameters used in this function

ParameterInput (data type)Description
<parameter>

DATA TYPE

Parameter description.
<parameter>

DATA TYPE

Parameter description.
Output
The function returns a NUMBER


The function returns a NUMBER the sum of all the time logged in issues by a user in a time interval defined by timestamps datetime_ini and datetime_end. If one or both timestamps are null, then it's assumed that the time interval hasn't low or high time limit respectively.

Logged time is returned in milliseconds.

Argument user can contain a single username (not be confused with user's full name), or a comma separated list of usernames, group names or project role names.

Syntax
timeLogged(issue list issues, number datetime_ini, number datetime_end, string user) #Output: Number
Examples
Parser expressionDescription
timeLogged(subtasks(), 2018/01/01, 2019/01/01, %{00003})

The function returns a NUMBER representing the sum of time logged by the assignee on subtasks during 2018.

 %{00003} is field code for Assignee.

Additional information

Parameters used in this function

ParameterInput (data type)Description
<parameter>

DATA TYPE

Parameter description.
<parameter>

DATA TYPE

Parameter description.
<parameter>

DATA TYPE

Parameter description.
<parameter>

DATA TYPE

Parameter description.