Skip to main content

Hi Team,

 

I need help to create a burn up graph, where the two measures are

1-total number of tickets created

2-total number of tickets closed

here is the file attached

2 answers
  1. Sep 26, 2022, 6:12 PM

    Hi @Sushi almeda​ . When dealing with ticket data, it is best to re-shape your data into one row per event, with an event being an open or close action. You can use Custom SQL (UNION ALL) or Tableau's union feature to self-union two copies of your ticket data together.

     

    I exported your Jira data into a CSV and joined it with itself:

    Hi @Sushi almeda​ . When dealing with ticket data, it is best to re-shape your data into one row per event, with an event being an open or close action. 

    Then I aliased the auto-generated Table Name field to distinguish the two identical copies:

    imageThen I created a combined Date field that is either the Created date or the Resolution date.

    // can't use aliases except in GUI

    IF RIGHT([Table Name],1) != "1" THEN [Created]

    ELSE [Resolutiondate]

    END

    Filter on Date to exclude Null and then it's easy to graph what you want.

    imageYou can also graph the number of open tickets at any point in the past using this technique. Create a new field called Delta that is either +1 or -1.

    IF RIGHT([Table Name],1) != "1" THEN 1 ELSE -1 END

    Now you can plot the Running Total of Delta right up to the current week.

    imageI used to analyze a lot of Jira ticket data.

0/9000