Forum Discussion

Lakshmi1294's avatar
Lakshmi1294
Frequent Visitor
3 years ago
Solved

Creating custom column with Multiple condition on Column

Hi All, I have a table containing the list of multiple items and values like below   Item Name    Value Kp123_K1      29.35 FK569_K1       11.5 Kp123_K2      30.25 FK569_K2      13.11 Kp123...
  • Anonymous's avatar
    Anonymous
    3 years ago

    Hi Lakshmi1294 ,

     

    Here are the steps you can follow:

    1. Create calculated column.

    All1 =
    var _if=
    IF('Table'[Value]<11.9,1,0)
    return
    IF(
        _if =0 ,'Table'[Value] *24)
    Max1 =
    IF('Table'[Value]<11.9
    ,
    MAXX(ALL('Table'),[Value]) * 24,BLANK())

    2. Result:

     

     

    Best Regards,

    Liu Yang

    If this post helps, then please consider Accept it as the solution to help the other members find it more quickly