Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
7 years ago
Solved

Use a slicer only filter one specific column

Hi,    How do I use a slicer in which it only filters me a specific column? For example have the "study version filter" filter the column of the "Actual" value and have the "reference version" filt...
  • Anonymous's avatar
    Anonymous
    7 years ago

    Anonymous & Anonymous

     

    The solution; 

    Create two tables: One table with Study Version and other table with Reference version. 

    After use this measure [example]:

    Measure= SWITCH(SELECTEDVALUE('Scenario'[Study Version]), "Actual", CALCULATE(SUM(FactFinance[STU])), "Actual LY", CALCULATE(SUM(FactFinance[STU]............

    Measure= SWITCH(SELECTEDVALUE('Scenario2'[Reference Version]), "Actual", CALCULATE(SUM(FactFinance[REF)), "Actual LY", CALCULATE(SUM(FactFinance[REF]............