Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

i have a custom text field "xyz" having some value and i want to know the last updated date of this

Priyanka Khare
Contributor
February 19, 2019

I have a custom text field "xyz" having some value and I want to know the last updated date of this value using a JQL? 

1 answer

0 votes
Alexey Matveev
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
February 19, 2019

Hello,

You can not find the last updated data of a custom field using JQL out of the box.

You would need to use a plugin like Power Custom Fields, ScriptRunner and so on.

You could create a custom field with these plugins, which would return the last updated date of a field.

If you want to use the Power Custom Fields Premium , your script for the field would look like this:

 

string field_name = "Amount";

string[] field_history = fieldHistory(key, field_name);

if (size(field_history) > 0) {

  return field_history[0];
}

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events