Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
8 years ago
Solved

Single Slicer?

I have this data: So as you can see, a company can have a Cobra manager, a Flex manager, or both. For the most part it tends to be the same person, but there are some exceptions. Is there ...
  • Greg_Deckler's avatar
    8 years ago

    You could use an unrelated person table and a measure like this:

     

    Measure = 
    VAR myPerson = IF(HASONEVALUE(People[People]),SELECTEDVALUE(People[People]),BLANK())
    RETURN IF(myPerson IN ALLSELECTED(COBRA[COBRA AM]) || myPerson IN ALLSELECTED(COBRA[Flex AM]),1,0)