Issue types mismatch

Hi @Matteo_Agnelli

Issue type is one of the few dimensions in eazyBI where we import changes.
If you want to split results by the current issue type, you would need to either custom calculation (which can be slow) or implement a new calculated field “Current Issue type” using Javascript in advanced settings and import the field as a new dimension from the import options page.

You can try this code:

[jira.customfield_curit]
name = "Current issuetype"
data_type = "string"
dimension = true
javascript_code = '''
if(issue.fields.issuetype){
    issue.fields.customfield_curit= issue.fields.issuetype.name
  }
'''

Then use new “Current issue type” dimension to split agile measures.

Martins / eazyBI