Every so often a user mistakenly gives a bad rating, and will mention in the option comments that they meant to give a different rating. Is it possible to change it after they chose the first time? Some of these really throws off our reporting.
Hi Jarrod,
Jira doesn't have the ability to change satisfaction survey results. You would need to find the data in the database and make the changes there.
The satisfaction data is stored within the customfieldvalue tables corresponding to the Satisfaction and Satisfaction date customfield tables, in JSON format.
Database queries needed to find the satisfaction data:
select id, cfname, description from customfield where cfname like '%Satisfaction%'; select * from customfieldvalue where CUSTOMFIELD=(select id from customfield where cfname like 'Satisfaction'); select * from customfieldvalue where CUSTOMFIELD=(select id from customfield where cfname like 'Satisfaction date');
Hope this helps!
Best regards,
Brian
The feature to change or delete an issue's satisfaction score in Jira Data Center is tracked by the ticket JSDSERVER-5514 "Customer Satisfaction: Allow Admins to Edit/Remove Scores."
I added a comment in the ticket with a workaround to update or delete the satisfaction using database queries. There is a video recording demonstrating the steps in the comment.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.