I have no foggiest idea what shall be in empty cells K44, M44 etc, so will not comment on the last formula (for column J).
Let's start from what is visible:
Columns F and G formulas work well.
For cell K3 , I'd suggest:
Formula:
=IF(H3<>"","Completed",IF(AND(F3<>"",G3<>""),(F3-G3)/F3,""))
and copy down
It can be expanded to check other special conditions - like not started yet
Formula:
=IF(H3<>"","Completed",IF(AND(F3<>"",G3<>""),(F3-G3)/F3,IF(AND(D3<>"",D3>=TODAY()),"Not started","")))
etc.
Or may be this column only percentage shall be shown, so
Formula:
=IF(H3<>"",1,IF(AND(F3<>"",G3<>""),(F3-G3)/F3,0))
and comments for special cases shall go to column J?
Bookmarks