I have a sheet being used as a project schedule in which I want to auto-indicate the project lifecycle stage in a cell on the sheet's meta-data line. To do so, I envisioned using an IF AND statement or something similar. Below is a mock up of the way it might look in excel.
Project Lifecycle Phase = XXXXXX
COLUMN
B C
Row % Complete Project LifeCycle Phase
8 0% 01 - Initiation
9 0% 02 - Discovery
10 0% 03 - Planning
11 0% 04 - Execution
12 0% 05 - Monitor & Control
13 0% 06 - Close down
The formula I built but failed on is noted below.
=IF(AND(B8>=90%,B9>=90%),"03 - Planning",IF(AND(B9>=90%,B10>=90%),"04 - Execution",IF(AND(B10>=90%,B11>=90%),"05 - Monitor & Control",IF(AND(B11>=90%,B12>=75%),"06 - Close Down","01 - Initiation"))))
I was successful writing a formula (see below) n excel however cannot replicate in SmartSheet where I get a #UNPARSEABLE error.
=IFS(B8<100%,"01",IFS(B9>0%,B9>100%),"02",IFS(B10>0%,B10<100%),"03",IFS(B11>0%,B11<100%),"04",IFS(B12>0%,B12<100%),"05",IFS(B12>0%,B11<=100%),"06")
Does anyone know a way to do this with a formula in SmartSheet?
Thanks in advance.