I created a scope change report. I drilled into the issues added by user. The report is showing some stories are unassigned but when I drill through the unassigned and go into each story, they are assigned to someone. How do I fix this?
Hi @AnneDixon
Thanks for posting your question!
The reason you see values returned for “Sprint issues added” under unassigned member, even though they are assigned to someone, might be because, at the time the issues were added to Sprint, they were not assigned to anyone.
You might want to import a new dimension, “Current Assignee”, to return “Sprint issues added” against Current Assignee. Here is a Community post that will guide you how to import the “Current Assignee” dimension:
Best wishes,
Elita from support@eazybi.com
I tried using the code you provided below in the advance settings but it said Missing “return”. Is there something I am doing wrong?
[jira.customfield_currentassignee]
name = “Current Assignee”
data_type = “string”
dimension = true
javascript_code = ‘’’
if (issue.fields.assignee) {
issue.fields.customfield_currentassignee = issue.fields.assignee.displayName;
}
‘’’
Hi @AnneDixon
You should add the code in the general eazyBI advanced settings (Advanced settings for custom fields).
Best wishes,
Elita from support@eazybi.com