=IF(AND(G2>TODAY(),H2="In Process"),"N/A",(DATEDIF(D2,TODAY(),"d")))I need it to return the value of 28Above in the formula I have in my report, however it's not giving me the correct value. I need it to return the value of 28.
Ideally I'm trying to accomplish a formula that will accomplish this..
=IF(D2>TODAY(),"Not Started",(IF(AND(G2>TODAY(),H2="In Process"),"N/A",(DATEDIF(D2,TODAY(),"d")))))
It'll return "Not Started" if the submission due date is later than TODAY(), and N/A if the remediation due date is later than TODAY() AND the status is "In Process". Otherwise it should return the difference in days between Column D and TODAY()
Can anyone help me identify my error?
Ideally I'm trying to accomplish a formula that will accomplish this..
=IF(D2>TODAY(),"Not Started",(IF(AND(G2>TODAY(),H2="In Process"),"N/A",(DATEDIF(D2,TODAY(),"d")))))
It'll return "Not Started" if the submission due date is later than TODAY(), and N/A if the remediation due date is later than TODAY() AND the status is "In Process". Otherwise it should return the difference in days between Column D and TODAY()
Can anyone help me identify my error?