@Paul Newcome I always tag you in my formula questions because you ROCK!
I need to map project phases we use in Smartsheet to the the phases we use when we report on our projects. I was able to get the basic function to work using the following formula, but I need to turn this into a string (I'm assuming an OR string) to map more than just one phase option.
Here is the basic formula that works:
=SUBSTITUTE([Active Stage]@row, "Eng. & Proc.", "Execution")
Here is the long string I attempted that becomes UNPARSEABLE:
=SUBSTITUTE([Active Stage]@row, "Site Assessment", "Initiation") SUBSTITUTE([Active Stage]@row, "Eng. & Proc.", "Execution") SUBSTITUTE([Active Stage]@row, "Pre-Construction", "Execution") SUBSTITUTE([Active Stage]@row, "Construction", "Execution") SUBSTITUTE([Active Stage]@row, "Energization", "Execution") SUBSTITUTE([Active Stage]@row, "Commissioning", "Execution") SUBSTITUTE([Active Stage]@row, "Close-out", "Close Out")
I'm hoping this is just a syntax thing and not a limitation (meaning, not possible to use in a string formula)
Thanks in advance!