Forum Discussion

lhern_ndez's avatar
lhern_ndez
Helper I
8 years ago
Solved

Calculated column with LEFT function and multiple IF depending in other Column conditions

Hello,   I have several columns in a table and I need to create a calculated column which value will depend on the first number of one of the column's value, see extract of the table:     ...
  • Anonymous's avatar
    Anonymous
    8 years ago

    Hi lhern_ndez

     

    Try this, this will work.

     

    New_Col = SWITCH(TRUE(),
                     LEFT(Table1[AcctNo],1) in {"0","1","2","3"},Table1[Amt]*-1,
                     LEFT(Table1[AcctNo],1) in {"4","5","6"},Table1[AcctNo]*1
    )

     

     

    Thanks
    Raj