Forum Discussion

manuelfigueira's avatar
6 years ago
Solved

SWITCH condition with ELSE conditional

Hello Everyone!   I have a chain of conditions extracted from a macro and I'm trying to coverted into DAX by using SWITCH (TRUE) function, and somehow is not working as the last condition is kind o...
  • parry2k's avatar
    6 years ago

    manuelfigueira try this, you have everything except last line to catch all

     

    Would appreciate Kudos 🙂 if my solution helped.

     

     

     

    SWITCH(TRUE(),
    '348910'[BU_CALC] = "FOOD", "RELEASE",
    '348910'[Status_SAP] = "Unmatched Standard" && '348910'[Age] < "91", "HOLD",
    '348910'[Status_SAP] = "Unmatched Standard" && '348910'[Age] > "90" && '348910'[Age] < "181", "TIMING",
    "RELEASE"
    )