Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

How do I show sub-tasks on a Kanban board?

Eric Sin
I'm New Here
I'm New Here
Those new to the Atlassian Community have posted less than three times. Give them a warm welcome!
August 3, 2020

Hi, I'm a complete noob with Jira... but I'm trying to figure out how to add sub-tasks under our team's Kanban board. Right now, I can't seem to figure it out, and most of the other solutions I've read seem so specific to the individual.

Our JQL code:

(project = MAR OR project = CREATIVE OR project = EVENTS OR project = SITE) AND issuetype = "Marketing Design" ORDER BY duedate ASC, "Need By Date" ASC

I'd love if someone could help me out!

Thanks in advance.

2 answers

0 votes
Tanya C
Contributor
August 3, 2020

If you are concerned with the only the Marketing Design issues on the board but also want the sub-tasks under them this should work for the board filter:

Project in (MAR, CREATIVE, EVENTS, SITE) AND issuetype in ("Marketing Design", Sub-Task) ORDER BY duedate ASC, "Need By Date" ASC

The probably could arise if the board is looping in sub-tasks of other issue types.  You have to include them in some way.  Potentially you could use a label or component and ensure that all sub-tasks created under Marketing Design issues include this label (eg. MDsub).  Then your filter could be:

(Project in (MAR, CREATIVE, EVENTS, SITE) AND issuetype in ("Marketing Design", Sub-Task) and (issuetype = Sub-task AND label in (MDsub))) ORDER BY duedate ASC, "Need By Date" ASC
0 votes
Reshma Begum {Appfire}
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
August 3, 2020

Hi @Eric Sin

 

To add sub-tasks on a custom board, please use the JQL as given below.

(project = MAR OR project = CREATIVE OR project = EVENTS OR project = SITE) AND type = Sub-task ORDER BY duedate ASC, "Need By Date" ASC

The above will show only sub-tasks on your board. If you want to add any other issue type as well to the board, then it is better to use the IN operator as given below.

(project = MAR OR project = CREATIVE OR project = EVENTS OR project = SITE) AND type in (Story, Sub-task) ORDER BY duedate ASC, "Need By Date" ASC

 

Hope it helps!

 

Thanks,

Reshma

Suggest an answer

Log in or Sign up to answer
DEPLOYMENT TYPE
CLOUD
PRODUCT PLAN
STANDARD
TAGS
AUG Leaders

Atlassian Community Events