Hi team, I am having difficulty with nested IF Statements. As part of our project tracking, each phase has a particular value. In order to use dashboards and report on these values (since charts can only use numeric values), I need to create a value for each of the phases below. I have inserted a column directly next to the phase column which i will hide from view on the sheet. Each value is what I would like returned when the phases status is updated.
- Planning/Analysis - 1
- Design - 2
- Development - 3
- Deployment - 4
- Wrap Up - 5
Each time I type the formula inside the column, it returns an UNPARSEABLE.
=IF([Current Phase]@row = "Planning/Analysis", "1", IF([Current Phase]@row="Design", "2", IF([Current Phase]@row="Development", "3", IF([Current Phase]@row="Deployment", "4", "5")))))
Can someone assist? I cannot seem to find the error here and do not want this to be a manual thing each time the phase is updated within the sheet.
Thank you!
Sarah