Hi,
Is it possible to generate a list of all custom fields that has not had any data populated into it?
I just took over a data center that has 50 separate projects sharing 304 custom fields. I want to get a handle on these fields and to see if we truly need 304, but I can't find an easy way to see which of these 304 fields has not had any data added to them.
Is this possible to generate a report like this?
Yes. In Jira DC, you can analyze the usage of custom fields. Some apps can help you with that too. See managing custom fields in Jira effectively for more details where you can find a few suggested apps and database queries.
If you access to the database, this query should get you what you need with some level of accuracy
select *
from customfield cf
where cf.id not in (
select distinct c.customfield
from customfieldvalue c)
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.