Forum Discussion

ksnnidhi's avatar
ksnnidhi
Regular Visitor
4 years ago
Solved

Calculation like excel

Is this calculation is possible in power bi 2 2 3 5   5 10 10 20  
  • TheoC's avatar
    4 years ago

    ksnnidhi everything is possible in Power BI (except some things) but all things are possible... just not everything.

     

    Create a calculated column like below:

     

    Calculated Column = 

    SWITCH (
    TRUE () ,
    'Table'[Column] = 2 , 2 ,
    'Table'[Column] = 3 , 5 ,
    'Table'[Column] = 5 , 10 ,
    'Table'[Column] = 10 , 20 ,
    BLANK() 
    )

     

    Enjoy 🙂