Presumably, B1 should be:
=IF(OR(A1="",F1=""),"",IF(ISNUMBER(A1),A1+60,""))
although I do not know what F1 has to do with it. But that can be simplified
as follows:
=IF(OR(ISNUMBER(A1)=FALSE,F1=""),"",A1+60)
formatted as Date.
D1 should be:
=IF(ISNUMBER(B1),IF(ISNUMBER(C1),MIN(B1+30,C1+30),B1+30),"")
formatted as Date.
Note that B1 is not a date if A1 is not a date (or F1 appears blank), so it
is not necessary to test A1 separately here.