How to build a dashboard that allows viewing any or all Initiatives (software projects)

Scott Mackay December 1, 2022

First, I am new.

Second, Each IssueType=Initiative is a software project with its own epics, stories, etc

Screenshot 2022-12-01 105518.jpg

I want to build a dashboard that:

  • Users can view data and charts about all software projects as a whole
  • Users can select a software project and view data and charts about only that project

I have gotten pretty versed with rich filters but how do configure an option for users to select any or all has challenged me.

 

1 answer

1 accepted

0 votes
Answer accepted
Mark Segall
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
December 1, 2022

Hi @Scott Mackay and welcome to the community!

Rich Filters can definitely handle this:

  • Create a smart filter for your initiative breakdown
  • Create a smart clause for each initiative (This is monotonous because you need to do it for each desired initiative). JQL will look something like this depending upon whether you're on server or cloud
    • Server
      • issue in childIssuesOf("")
    • Cloud
      • issue in portfoliochildIssuesOf("")
  • Add the new smart filter to your controller gadget
Scott Mackay December 2, 2022

It works and was simple. Thank you!

Like Mark Segall likes this

Suggest an answer

Log in or Sign up to answer