I've created structured board with all my issues starting from EPICs to Task and getting the result in hierarchical view which is all good. When I export data in to excel the same hierarchy is exported but when i apply filter the linked parent issues are not showing up.
For example, if filter is applied for user story the parent issues are not showing up. I would like to see all the epics which are related to user story.
Hello @Rama ,
David from ALM Works here.
In addition to what @Brant Schroeder has suggested, you could also add a formula column to your structure that you can then filter by in excel.
For example, if you need to filter by Status, you could try this:
IF (level != 1;
STATUS;
level
)
Based on the hierarchy you describe, your Epic is level 1 and the Tasks would be level 2. The formula looks at the level and determines that if the issue is not on level 1, it returns the Status of the issue and if It IS on level 1, it returns the level (1).
Now, when you export, you can filter by this column, choosing options for 1 and whatever Statuses you want to include in the filter.
I do have to ask, what need are you solving for by exporting to excel? We love customer feedback and would be very interested in hearing about your use case!
Please let me know if this helps!
Best,
David
@Rama you will need to make sure that your filter does not remove the parent issues. You can always add additional filters that use the OR statement to include the parent issues.
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.