Unable to create Issue Link Field Dimension in eazyBI Report

Hi Gaurav,

If your “Quarter” field is a single value field in Jira attributed only to Epics, and you would like to filter Epic child members by this Epic value, you can introduce an Inherited field dimension in Advanced settings with the help of custom Javascript code:

[jira.customfield_NNNNN_e]
name = "Epic custom field name" 
data_type = "string"
dimension = true
update_from_issue_key = "epic_key"
javascript_code = '''
if(issue.fields.customfield_NNNNN ) {
   issue.fields.customfield_NNNNN_e = issue.fields.customfield_NNNNN;
}
'''

Replace the NNNNNs with the IDs of your custom field. The “update_from_issue_key” parameter will specify from which hierarchy level you would like to pass down the values.

When this is saved, go to your Jira import options, select this new field for import, and you should see the “Epic custom field name” dimension available in your report creation section.

Best regards,
Nauris / eazyBI support