Forum Discussion

Crazydog's avatar
Crazydog
Frequent Visitor
3 years ago
Solved

Slicer & value pick

So I have say 3 columns,    (num)Col A     (num)Col B       (num)Col C (Calculated)  0.5                   2(variable)           0.5 * 2    7                      5                          7 * ...
  • Anonymous's avatar
    Anonymous
    3 years ago

    Hi Crazydog ,

     

    1. This is not possible if columns [Col B] and [Col C] are calculated columns. Since the nature of a calculated column is that it is only recomputed when memory is flushed, it does not interact with the slicer once the computation is complete.

    2. If they are measures, please try:

     

    Measure = 
    VAR _col_a = MAX('Table'[Col A])
    VAR _value = SELECTEDVALUE('Table2'[Col B])
    VAR _result = IF(_col_a = 0.5 , _value , MAX('Table'[Col B]))
    RETURN
    _result
    Measure 2 = MAX('Table'[Col A])*[Measure]

     


    Attached PBIX file for reference.

     

    Best Regards,
    Gao

    Community Support Team

     

    If there is any post helps, then please consider Accept it as the solution to help the other members find it more quickly. If I misunderstand your needs or you still have problems on it, please feel free to let us know. Thanks a lot!

    How to get your questions answered quickly -- How to provide sample data