Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
5 years ago

Measure for Remaining Tickets

Hi,

 

I have a visual in my reports which shows the closed and created tickets over a period.

 

I want to create a measure where I can see the remaining tickets for the month.

Eg. in Dec 10 were created and 5 gets closed so total remaining are 5 tickets.

 

In Jan 50 are created and 25 are closed so total in Jan should look like 25 tickets for Jan + 5 Tickets of Dec so total remaining in Jan should be 30.

 

Currently I'm getting remaining tickets for a particular month but I want to add the previous month remaining tickets as well to the measure. 

 

Kindly suggest me how to proceed.

 

Measure created in report :

Remaining Non-Dev Tags = [Non-Dev Tags]-[Closed Non-Dev Tags]
 
Expected:
 
Remaining Non-Dev Tags = [Non-Dev Tags]-[Closed Non-Dev Tags] + last months remaining tickets.

 

 

Expected Graph:

 

 

5 Replies

  • Hi, Anonymous 

    Please check the below picture and the sample pbix file's link down below, whether it is what you are looking for.

    All measures are in the sample pbix file and steps are numbered in front of each measure.

     

     

    https://www.dropbox.com/s/h6go6vrl9wi8t7p/himanshu.pbix?dl=0

     

     

    Hi, My name is Jihwan Kim.

     

    If this post helps, then please consider accept it as the solution to help other members find it faster, and give a big thumbs up.

     

    Linkedin: https://www.linkedin.com/in/jihwankim1975/

    • Anonymous's avatar
      Anonymous
      Not applicable

      Jihwan_Kim  Thanks it reolved my issue and was great to know.

       

      Regards,

      Himanshu

    • Anonymous's avatar
      Anonymous
      Not applicable

      Jihwan_Kim  Can you please help here as well. I just want to add two measures now.

       

      As of now we have used only 1 measure in the measure i.e for non dev ticket

       

      4 Remaining Cumulate =
      CALCULATE (
      [Remaining Non-Dev Tags],
      FILTER (
      ALLSELECTED ( 'DAX Date Table' ),
      'DAX Date Table'[Date] <= MAX ( 'DAX Date Table'[Date] )
      )
      )
       

       

      If i have more than 1 measure then how can I add the remaing?

       

      Eg I need some of Remaing Non Dev+ Remaing Issue for the above graph shown.

       

      Regards,

      Himanshu

      • Jihwan_Kim's avatar
        Jihwan_Kim
        Super User

        Hi, Anonymous 

        Sorry I could not understand your question.

        I am not sure whether you are asking about the same pbix file.

        If you are asking about the different pbix file, please share.

         

        Hi, My name is Jihwan Kim.

         

        If this post helps, then please consider accept it as the solution to help other members find it faster, and give a big thumbs up.

         

        Linkedin: https://www.linkedin.com/in/jihwankim1975/

  • Have you tried using the Running Total quick measure?