Forum Discussion

Jason_Walker's avatar
Jason_Walker
Frequent Visitor
2 years ago
Solved

How to Combine Data from Tables with Different Granularity Levels for a Visual

Not sure if what I need is possible but I'd like to use data from multiple tables with different levels of granularity in a visual. Right now the tables are joined at the sub-category level but one t...
  • Daniel29195's avatar
    2 years ago

    Jason_Walker 

     

    what you want to do is possible using dax . function isinscope if you are using a matrix,

     

    example of the synthax : 

     

    measure = 

     

    switch(

    true() , 

    isinscope ( region) ,  balnk() , 

    isinscope ( area ) ,  [Overhead for each Area calculation ]

     

     

    let me know if it works for you .

     

     

    If my response has successfully addressed your issue kindly consider marking it as the accepted solution! This will help others find it quickly. I would appreciate hitting that kudos button 👍🤠