Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
7 years ago

drillthrough with matrix

Hello, 

 

I have a matrix that count how many tickets are open in the end of the month (with a measure). When i use the drillthrough , filters my data but the month and the year that i select in a matrix to see the records.

 

This is away to show the records like in a matrix ?

 

For exemple:

 

if in the end of may 2019, i have 7 tickts open, but when i use the drillthrough just show me the tickts that were open in may 2019 and don't show me the records that was open in previous months and have not yet been closed.

 

Best Regards, 

JO

2 Replies

  • v-piga-msft's avatar
    v-piga-msft
    Resident Rockstar

    Hi Anonymous ,

    I still have a little confused about your scenario.

    If it is convenient, could you share some data smaple or screenshots which could reproduce your scenario and your desired output so that we could help furhter on it?

    Best Regards,

    Cherry

     

    • Anonymous's avatar
      Anonymous
      Not applicable

      Hi v-piga-msft , 

       

      Thanks for your reply.

       

      I have this matrix that counts how many tickets that were open until the end of each date, what I want is to drill through so that it is possible to see the records

      the matrix presented is calculated with measures. 

      the calculation of these measures is also presented below

       

      But, when i do the drillthrough , just show me the records that era open in that date, don't show me the records that are open before that date.

       

      Can you help me ?

       

      CALCULATE (
                DISTINCTCOUNT(PROB_PROD[NUMBER_ID]),
                FILTER( ALLSELECTED(PROB_PROD),
                    (PROB_PROD[CLOASED_DATE] = BLANK() || PROB_PROD[CLOASED_DATE] > Max ( 'Calendar'[Date]))
                    &&  PROB_PROD[OPENED_DATE] <= Max ( 'Calendar'[Date] )
      ))