Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
5 years ago

Problem with Drill-Down measure

Hello, the picture below shows the same diagramm in three different stages. The fist on ist the top level and the bottom two the drill-down level. The circle on the right always show how many percent of the values are blank which works perfectly fine for the top level. In the second level still the value of the top level but only for the specific drill-down is calculated which is always 100% since the top level had a value. This only changes if i manually select some of the values. Is there any way to directly make the second level display 66% without manually selecting anything?

The measure used for calculating the value is the following:

 

 

DDPctBlaBlank = 
Var BLA = 0+count(FKT_STUWOCBLA[BLATTID])/(count(DIM_BLAETTER[BLATTID])*count(DIM_STUDENTEN[STUDENTID]))
VAR AUF = 0+count(FKT_STUWOCAUF[AUFGABEID])/(count(DIM_AUFGABEN[AUFGABEID])*count(DIM_STUDENTEN[STUDENTID]))
RETURN
IF(ISFILTERED(DIM_Aufgaben[Aufgabentitel]),Auf,Bla)

 

 

It seems like if i do not explitly select something on the bottom level the measure always return the var Bla,

2 Replies

  • Anonymous Use ISINSCOPE function instead of ISFILTERED to find out if you are at the next level and return the value from measure accordingly. Read about ISINSCOPE here.

     

    Check my latest blog post Year-2020, Pandemic, Power BI and Beyond to get a summary of my favourite Power BI feature releases in 2020

    I would  Kudos if my solution helped. 👉 If you can spend time posting the question, you can also make efforts to give Kudos to whoever helped to solve your problem. It is a token of appreciation!

    Visit us at https://perytus.com, your one-stop-shop for Power BI-related projects/training/consultancy.

    • Anonymous's avatar
      Anonymous
      Not applicable

      parry2k 

      Thanks for the answere i tried InScope and Iscrossfiltered both.
      On the top level i get the follwing response:

      Iscrossfiltered is already 1 here and therefore returns the wrong value.

      On the Drill-Down-Level:

      Iscrossfiltered is correct the other two return the wrong value.

      And if i explitly select something IsFiltered is also correct.

       

      So basically InScope never works for me or I used it wrong. (I just swapped the IsFiltered in the original measure with the other two commands).
      And the other two both only work in one of two cases.