Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
6 years ago
Solved

Allow Users to Override Measure Logic that Filters the Table

I have a table which matches companies based on similarity. It is constructed so that for each company, it will match against every other company, and give those matches a rank. eg. Let's call thi...
  • Greg_Deckler's avatar
    Greg_Deckler
    6 years ago

    Anonymous - The short form is:

     

    Measure =
      SWITCH(SELECTEDVALUE('DisconnectedTable'[Column]),
        "Option 1", <calculation one way>,
        "Option 2", <calculation a different way>
      )