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?
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];
}
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.