Forum Discussion

jen8080's avatar
jen8080
Helper I
5 years ago
Solved

Excel IFS to DAX

Hello- I have this formula in my current excel report  =@IFS(Y3="","Missing Complete Date",(Y3-W3)<0,"On Time",(Y3-W3)=0,"On Time",(Y3-W3)>0,"Missed")   I need to translate into DAX and keep runn...
  • Ashish_Mathur's avatar
    5 years ago

    Hi,

    Try this calculated column formula

    =if(data[actual complete date]=blank(),"Missing Complete Date",if(data[target date]>=data[actual complete date],"On time","Missed"))

    Hope this helps.