Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
5 years ago
Solved

Detecting hierarchies in matrix table

Hello, guys! 

Need some help.

Try to create some measures for calculation in table, but got some errors with hierchy. 

I googled a little and found this article:

https://www.daxpatterns.com/hierarchies/

I tried to repeat The Product Level  measure, but it didn`t work correctly.

Look,

What did i wrong? 

 

Link to pbix: https://drive.google.com/file/d/18RSdNrmt79EE36iY_i75RfjiyMgjh9Tu/view?usp=sharing

  • @KonstantinD

    You must change column1 and 2 in the variables, try the following measure:

    Product Level 2 = 
    VAR IsProductInScope = ISINSCOPE ( 'Table'[Column2] )
    VAR IsSubcatInScope = ISINSCOPE ( 'Table'[Column1] )
    VAR Result = 
        SWITCH ( 
            TRUE (),
            IsProductInScope, "Product",
            IsSubcatInScope, "Subcategory",
            "No filter"
        )
    RETURN 
        Result

    Fowmy_0-1607284578308.png

    ___________________

    If my answer was helpful, click OK as the solution to help other members find it useful

    Click the Thumbs-Up icon if you like this answer 🙂


    Website Youtube Linkedin

3 Replies

  • @KonstantinD

    You must change column1 and 2 in the variables, try the following measure:

    Product Level 2 = 
    VAR IsProductInScope = ISINSCOPE ( 'Table'[Column2] )
    VAR IsSubcatInScope = ISINSCOPE ( 'Table'[Column1] )
    VAR Result = 
        SWITCH ( 
            TRUE (),
            IsProductInScope, "Product",
            IsSubcatInScope, "Subcategory",
            "No filter"
        )
    RETURN 
        Result

    Fowmy_0-1607284578308.png

    ___________________

    If my answer was helpful, click OK as the solution to help other members find it useful

    Click the Thumbs-Up icon if you like this answer 🙂


    Website Youtube Linkedin

  • Anonymous's avatar
    Anonymous
    Not applicable

    Many thanks @Fowmy !

    It depends on sequence of erarchy level in measure - got it!

    • Fowmy's avatar
      Fowmy
      Icon for Super User rankSuper User

      Anonymous 


      You are welcome,

       

      kindly accept the reply as the solution if it is helpful for you,

      Thanks