This JQL function returns users by checking against their user properties that contain numeric values.

usersWithNumericProperty(propertyName, operator, number) #Output: User list
Parser expressionDescription
assignee in usersWithNumericProperty("dailyTasks", ">", 4)

This example returns all issues where the Assignee's property dailyTasks is greater than 4.

vs.

This example returns all issues where the current assignee has a user property called dailyTasks with a value greater than 4.

reporter in usersWithNumericProperty("remainingHolidays", "=", 11)

This example returns all issues where the Reporter's property remainingHolidays is equals to 11.

vs.

This example returns all issues where the reporter has a user property called remainingHolidays with a value of 11.

Does that example make sense?

Parameters used in this function

ParameterInput (data type)Description
propertyName

The name of an user property containing a numeric value.
operator

The operator used to compare the actual value with the expected value. Allowed operators are:

ComparatorDescription
=Property value must be equal to the specified one.
!=Property value must not be equal to the specified one.
>Property value must be greater than the specified one, ignoring the case.
<Property value must be lower than the specified one, ignoring the case.
number

The number to be compared with the value stored in the user property.

This function returns a

If you want to search for issues where a user as a specific text or date property value, have a look the the usersWithTextProperty() or usersWithDateTimeProperty() function.

If you want to search for issues, checking only if a property is being set ignoring it's value, have a look the the usersWithProperty() function.

Short description

Returns users with specific numeric properties.

Output

Label



Status
Tech review

  Data types for output

Style guide