Hello Everyone!!
I was hoping I might get some help regarding an issue I'm having with IF statements as a function of date.
So I'm working on a project reporting tool that has all of the projects for my department and their status, be it Ready, Not yet due, due withing two weeks or late. The function I've been using is as follows:
=IF(AND(ISBLANK(E16)=FALSE,ISBLANK(F16)=FALSE,ISBLANK(G16)=TRUE,$A$10>F16),"Late",IF(ISBLANK(G16)=FALSE,"Ready",IF(AND(ISBLANK(E16)=FALSE,(F16>($A$10+14))=FALSE,ISBLANK(G16)=TRUE,($A$10+14)>F16),"Due within two weeks","Not yet due")))
Where
A10 = todays date
E16 = start date
F16 = due date
G16 = completion date
I need to add in more arguments and I really don't know how, my end goal is to have a "Ready", "due immediately" (within one week) "due within two weeks" ( < 14 days from due date), "due within a month" (<30 days to due date) "not yet due" (> 30 days to due date) and "Late".
I have no idea how to put in so many arguments and I am very lost.
If anyone could help I would greatly appreciate it.
Kind Regards,
Bryan
I was hoping I might get some help regarding an issue I'm having with IF statements as a function of date.
So I'm working on a project reporting tool that has all of the projects for my department and their status, be it Ready, Not yet due, due withing two weeks or late. The function I've been using is as follows:
=IF(AND(ISBLANK(E16)=FALSE,ISBLANK(F16)=FALSE,ISBLANK(G16)=TRUE,$A$10>F16),"Late",IF(ISBLANK(G16)=FALSE,"Ready",IF(AND(ISBLANK(E16)=FALSE,(F16>($A$10+14))=FALSE,ISBLANK(G16)=TRUE,($A$10+14)>F16),"Due within two weeks","Not yet due")))
Where
A10 = todays date
E16 = start date
F16 = due date
G16 = completion date
I need to add in more arguments and I really don't know how, my end goal is to have a "Ready", "due immediately" (within one week) "due within two weeks" ( < 14 days from due date), "due within a month" (<30 days to due date) "not yet due" (> 30 days to due date) and "Late".
I have no idea how to put in so many arguments and I am very lost.
If anyone could help I would greatly appreciate it.
Kind Regards,
Bryan