Forum Discussion

Funkmiester's avatar
Funkmiester
Advocate I
8 years ago
Solved

cross filtering columns in the same table

This is so basic apologies, I'm missing something. I have a fact table containing organisations, they are grouped in a separate groups, there are mutliple entries for each  organisation in the tab...
  • Stachu's avatar
    8 years ago

    you will need second table for this - otherwise filter you put on Org Name will overwrite one coming from the Org Group, tables shouldn't have joins
    new table (named Slicer) 

    Org NameOrg Group
    Org11
    Org21
    Org32
    Org42
    Org53
    Org63
    Org74
    Org84
    Measure = 
    CALCULATE(
    SUM('Table1'[Score]),
    INTERSECT(ALL('Table1'[Org Group]),VALUES(Slicer[Org Group]))
    )