Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
6 years ago

DrillDown issues with different time and value metrics

Hello!
Ive been having some issues visualizing in a drill down from the quarters of a year to the months:

I have a metric named, # of Backlog Unscheduled Cases (End of Month) that i have to use it in the axis with the time metric (month). The same for, # of Backlog Unscheduled Cases (End of Quarter) but with the time metric quarter.

Ive been using this formula cause i want to put these 2 different values ina line chart so i have each metric matched with time metric that correspond.
The issue is when i want to see the months because when I make a  drill down to see the data divided by months, I just see the data of the beginning of every quarter. For example (month 1, month 4, month 7, month 11). I would like to see the data of the Twelve months(Ive checked the month metric separatedly and it works i visualize all the months, maybe its the formula). Here is a screenshot:
 
ChangeInDrillDown =

VAR month1 = 'Fact - Backlog Cases'[# of Backlog Unscheduled Cases (End of Month)]
VAR quarter1 = 'Fact - Backlog Cases'[# of Backlog Unscheduled Cases (End of Quarter)]

RETURN
IF(ISFILTERED('Hierarchy - Fiscal Calendar on Open Date'[FiscalYear]),month1,quarter1)
 

 

3 Replies

  • v-lid-msft's avatar
    v-lid-msft
    Icon for Community Support rankCommunity Support

    Hi Anonymous ,

     

    We can try to use the following measure to meet your requirement:

     

    ChangeInDrillDown =
    VAR month1 = 'Fact - Backlog Cases'[# of Backlog Unscheduled Cases (End of Month)]
    VAR quarter1 = 'Fact - Backlog Cases'[# of Backlog Unscheduled Cases (End of Quarter)]
    RETURN
        IF (
            ISFILTERED ( 'Hierarchy - Fiscal Calendar on Open Date'[FiscalFYMonth] ),
            month1,
            quarter1
        )
     
    If it doesn't meet your requirement, kindly share your sample data and expected result to me if you don't have any Confidential Information. Please upload your files to One Drive and share the link here.


    Best regards,

     

    • Anonymous's avatar
      Anonymous
      Not applicable

      I found solution and evrything works correctly.

      Thankyou!!

      Now I have to do other formula but with different characteristics. Is it Okey if I explained it here so we kkep contact or I make a new post. 

       

      Regards,

      Alejandro

      • v-lid-msft's avatar
        v-lid-msft
        Icon for Community Support rankCommunity Support

        Hi Anonymous ,

         

        Glad to hear that you have resolved your problem. If it does not contain any confidential information,could you please kindly share the solution you find so that it can benefit more users here? If you have any other questions about this scenario , please kindly ask here and we will try to resolve it.


        Best regards,