Hi Team,
We have parent issue type called Project Requirement and Child Issue as Epic. There is custom field called project director filled at the project requirement same should be shown at Epic.
I have tried creating report with below measure, It doesn’t work. Kindly help with this request.
CoalesceEmpty(
[Issue].CurrentHierarchyMember.Parent.get(‘Project Director’)
)
Thanks in Advance !!
Swapna
Hi @Swapna12,
The Parent
function returns the parent of the current member, based on the hierarchy currently used. In the report, you have the default hierarchy of the Issue dimension, and in that case, every issue’s parent is the Project.
To view the Project Requirement value, use the particular hierarchy in the Issue dimension. For example, to view an Epic level field in a Story, I use the “Epic” hierarchy in the Issue dimension:
Another option is to pass down the value from a higher-level issue during the data import with JavaScript calculated custom fields. See the eazyBI documentation page for an example on passing down an Epic level field value to its children - Epic level custom field.
Best,
Roberts // support@eazybi.com