Hello-
Looking for a formula to where if I have multiple fields with single select options to act as an IF statement that overrides the last stage that is selected:
So when any of these are selected based on the rules set in the formula, only that stage will show regardless if project status is approved for graphic design and the formula displays DESIGN STAGE, once Graphic Design Status is not blank, it will show the status for that stage - make sense?
IF({PROJECT STATUS}=BLANK(),‘’,
IF({PROJECT STATUS} = ‘APPROVED FOR GRAPHIC DESIGN’,‘DESIGN STAGE’,
IF({GRAPHIC DESIGN STATUS}=BLANK(),‘’,
IF({GRAPHIC DESIGN STATUS} = ‘READY FOR REVIEW’,‘DESIGN STAGE’,
IF({GRAPHIC DESIGN STATUS} = ‘REQUIRTES REVISION’,‘DESIGN STAGE’,
IF({GRAPHIC DESIGN STATUS} = ‘ON HOLD’,‘DESIGN STAGE’,
IF({GRAPHIC DESIGN STATUS} = ‘APPROVED FOR SUBMITTAL’,‘SUBMITTAL STAGE’,
IF({SUBMITTAL STATUS}=BLANK(),‘’,
IF({SUBMITTAL STATUS} = ‘IN SUBMITTAL’,‘SUBMITTAL STAGE’,
IF({SUBMITTAL STATUS} = ‘READY FOR REVIEW’,‘SUBMITTAL STAGE’,
IF({SUBMITTAL STATUS} = ‘REQUIRES REVISION’,‘SUBMITTAL STAGE’,
IF({SUBMITTAL STATUS} = ‘ON HOLD’,‘SUBMITTAL STAGE’,
IF({SUBMITTAL STATUS} = ‘APPROVED FOR FINAL PROOFING’,‘FINAL PROOFING STAGE’
))))))))))