hi,
i'm trying to get a formula to work but there's a few different factors that determine which value should be returned.
4- development tiers
5- stage gates
an auto date based on when stage gate changes
right now i have this that is returning back "unparseable"
=IF(AND([Development Tier]@row = "Version Change/Iterative Product Update", [Stage Gate]@row = "stage gate 2"), [Stage Date Date]@row + 110, IF(AND([Development Tier]@row = "New Product Category"), [Stage Date Date]@row + 110, IF(AND([Development Tier]@row = "Packaging Extension"), [Stage Date Date]@row + 80, IF(AND([Development Tier]@row = "Flavor Extension"), [Stage Date Date]@row + 85, “”)))))))
so basically if it's one of the 4 development tiers and in "stage gate 2" it'll return a date that's based on "stage date date" + x amount of days.
I was able to get this formula to work but i need to get it to work with all the factors because ideally i can do each dev tier in each stage gate to return a date
=IF(AND([Development Tier]@row = "flavor extension", [Stage Gate]@row = "stage gate 2"), [Stage Date Date]@row + 75, IF(AND([Development Tier]@row = "packaging extension", [Stage Date Date]@row + 65)))
Help 😊