Forum Discussion

mdemarne's avatar
mdemarne
Microsoft Employee
6 years ago
Solved

Change column computation based on a slicer

Hi,    I have a table T with two columns, A and B. Depending on a slicer (S), I would like to have a third column, X, with different values: If S = 1, then X = B if S = 0, then X = A - B if S i...
  • parry2k's avatar
    6 years ago

    mdemarne add as a measure

     

    X= 
    VAR __s = (SELECTEDVALUE(F[S], -1) 
    RETURN
    SWITCH ( __s,
    1, SUM ( T[B] )
    0, SUM ( T[A] ) - SUM ( T[B] ),
    SUM ( T[A] )
    )

     

    I would  Kudos if my solution helped. 👉 If you can spend time posting the question, you can also make efforts to give Kudos whoever helped to solve your problem. It is a token of appreciation!