I have been working on created a nested IF for a document I am working on, however I have maneged to make two diffrent IF statemnets that both work but they need to be merged.
The infomation its in relation to is:
J K L M N
23 Start End Cloud
24 01/04/2014 cloud Yes
25 03/03/2014 Overdue
26 22/05/1992 cloud Yes
27 03/03/2014 Overdue
28 01/07/2014 cloud Yes
29 29/06/2014 On Time
30 03/03/2014 10/03/2014 Complete Yes
The two IF's i current have are:
This If statement firstly looks to see if the End column is filled if it is filled then the project is completed and that can be Displayed in column L. Then it takes the start(date) in ciolumn J and adds 10 workdays it then compares this to todays date to see if the project is Overdue or ontime.
=IF(NOT(ISBLANK(K25)),"Complete",IF(WORKDAY(J25,10)<TODAY(),"Overdue","On Time"))
This IF statement looks to see if there is a Yes in the Cloud collumn(N) if there is it then adds 20 working days to the start date then compares that to todays date to see if the project is overdue or on time.
=IF(AND(N26 = "Yes", (WORKDAY(J26,20)<TODAY())),"Overdue", "On Time")
So what I am looking for is these two combined but i always get an error or a emssage saying to many arguments.
What it needs to do is: 1) look to see if their is and end date if there is set column L to complete 2) see if there is a Yes in the cloud collumn if so add 20 workdays to the start date the compare to todays date and set column L to either overdue or on time 3) if the cloud column is empty add 10 workdays to the start date then compare to todays date and set column L to either overdue or ontime.
Any help would be awesome!!!