Forum Discussion
jen8080
Helper I
5 years agoExcel 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...
- 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.
Ashish_Mathur
Super User
5 years agoHi,
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.