is there possibility show story count for each epic?
Yes, by means of automation, updating a custom number field for each story added to the Epic, or as @Gor Greyan suggested.
But my initial question would be why, what would this number deliver?
What information would it provide?
For custom hierarchies, roll ups for time tracking , story points, numeric values to parent, if you are open to try out a mktplace app, take a look at,
The app allows you to view your issues in a hierarchy list view with roll up of story points at Epic level and at each parent level.
Disclaimer : I am one of the app team member
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Jira can actually do a basic version of this out of the box. On a classic dashboard, add the Two Dimensional Filter Statistics gadget:
issuetype = Story AND "Epic Link" is not EMPTYThat covers the basic count. If you want something more visual or flexible on the dashboard, two Plugio apps build on the same idea:
(Quick tip: 'Epic Link' is EMPTY returns issues without an epic — for counting stories under epics use is not EMPTY.)
— Habib, Plugio team
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Yes, it's possible, although Jira Cloud doesn't provide a built-in "Story Count" field for Epics.
If you just want to know how many Stories belong to an Epic, you can search using JQL (for example, by filtering child issues of an Epic) and see the total number of results.
If you'd like the count to appear as a column in the Issue Navigator or on boards, you'll typically need a Marketplace app.
You can try this jql.
parent = epic-xxxxa AND issuetype = Story
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.