"Costed Status" is a Boolean and therefore equal to TRUE() or FALSE(). This means that you can say:
IF({Costed Status},"Dayend has been done","Dayend has NOT been done")
or, if you find that hard to read:
IF({Costed Status}=TRUE(),"Dayend has been done","Dayend has NOT been done")
or
IF(NOT({Costed Status}),"Dayend has NOT been done","Dayend has been done")