Hi all,
I am looking for some help with an If / AND / OR Formula please.
My issue is as follows:
I am looking for a formulate to automatically populate a 'Status' column based on '% Complete' and 'Finish' column(date column).
I would like the formula to display the following outcomes for each task's 'Status'
- 'Complete' when '% Complete' is = 100%
- 'In-Progress' when '% Complete' is greater than 0%, less than 100% and does not fall under the definition of 'Off-Track'
- 'Off-Track' when '% Complete' is <70% and task is falling due in less than 14 days time
- 'Delayed' when '% Complete' is not equal to 100% and 'Finish' date is in the past
- 'Not Started' when '% Complete' is 0% and does not fall under the definition of 'Off-Track' or 'Delayed'
The current formula I have in place is working for 1,2,5 above:
=IF([% Complete]8 = 0, "Not Started", IF([% Complete]8 = 1, "Complete", "In Progress"))
Any help would be greatly appreciated.
Thanks all.