Formula Help Please!
Hi Community-
I have a column that I want to say what phase a project is in based upon the criteria below
4 Possible Phases β βStrategy & Intakeβ, βBrief Finalizationβ, βDetailed Conceptsβ, βProduction to Marketβ
#1 βStrategy & Intakeβ β Milestone βBRIEF COMPLETED & APPROVEDβ is not checked and is not in the next 21 days or more.
#2 βBrief Finalizationβ β Milestone βBRIEF COMPLETED & APPROVEDβ is not checked and is in the next 20 days
#3 βDetailed Conceptsβ β Milestone βBRIEF COMPLETED & APPROVEDβ is checked
#4 βProduction to Marketβ β Milestone βAPPROVED DETAILED CONCEPTSβ is checked
Any help using the @row would be much appreciated!
Β
Comments
-
You need to consider the order of evaluation. In this case, this is the order I would use:
#4 - If Approved Detailed Concepts is checked, thenΒ nothing more to check
#3 - If both Brief Completed & Approved is checked then nothing more to check
Check that Milestone is a Date otherwise, cannot evaluate days ahead
#2 -Β Brief Completed & Approved is not checked & in next 20 days <=Today(20)
#1 -Β Brief Completed & Approved is not checked &Β 21 daysΒ or more >TODAY(20)
Use @row in place of row numbers so speeds up calc and reordering.
Assuming Brief Completed, Approved, Approved Detailed Concepts are all individual checkbox columns, and Milestone is a date column, try thisΒ code in the Phases column.
=IF([Approved Detailed Concepts]@row=1,"Production to Market",
IF(AND([Brief Completed]@row=1,Approved@row=1),"Detailed Concepts",
IF(AND(ISDATE(Milestone@row),Β [Brief Completed]@row=0,Approved@row=0),
IF(Milestone@row<=TODAY(20), "Brief Finalization", "Strategy & Intake"))))
It is a little ugly but should work.
β Did my post help answer your question or solve your problem? Please help the Community byΒ marking it as the accepted answer/helpful. It will make it easier for others to find a solution or help to answer!
-
Are all of the milestones in the same column, or are they column headers with dates/checks going across a row?
-
Hi Paul-
They are going across a row.
-
Give this a try...
Β
=IF([Approved Detailed Concepts]@row = 1, "Production to Market", IF([Brief Completed & Approved]@row = 1, "Detailed Concepts", IF([Brief Completed & Approved (date)] >= TODAY(-20), "Brief Finalization", "Strategy & Intake")))
Help Article Resources
Categories
Check out the Formula Handbook template!