Feb 19, 2024 10:50 AM
I have a project stage field that I need to convert into generalized phases. I have the below SWITCH formula and I cannot get it to save. All of the articles I have read have examples formatted this way - What is the issue?
Feb 19, 2024 02:54 PM
Ah, your quotes might be the issue here. I converted them to ' and it seems to work now:
SWITCH(
{Project Stage},
'Discovery', 'In Progress',
'Planning', 'In Progress',
'Account Build/Import', 'In Progress',
'Execution/Migration Prepped', 'In Progress',
'Imported', 'In Progress',
'Import Prepped', 'In Progress',
'Complete - Migrated', 'Complete',
'Migrated/Monitoring', 'Complete',
'Project Closed', 'Closed',
'Pending'
)
Feb 20, 2024 05:55 AM
That worked! Thank you.