Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
7 years ago
Solved

Switch function from two seperate tables???

Hi Experts   Is it possible to askthe swtich function to look at two seperate tables and apply the correct measures depending on what filter is selected...so i currently have.. MeasureName2 = IF(I...
  • Maddy99's avatar
    Maddy99
    7 years ago

    I try it, and it could work technical.

    under here my test in picture. 

     

    there are only a few but. the swicht goes from bottom to top. 

    if the first is true. like legend is proposta2. than it does not mather if the catory is also true, it only shows the first measure. 

    wich makes sens to me.

    the final row in my table does no have a defined leged than i looks for the category.

     

    gives this a idea of what you could do?

     

    switch = 
    VAR Legend = SELECTEDVALUE(Table1[Column1])
    VAR Category = SELECTEDVALUE(ProductCategory[Name])
    RETURN 
    SWITCH(TRUE();
        Legend = "Proposta2"; [Measure 2] ;
        Legend = "Proposta3"; [Measure 3];
        Category = "Bikes"; [Measure 4];
        Category = "Clothing"; [Measure 5];
    BLANK())