=IF([Intake Status]@row = "Assigned to CHC", "C" + [Intake ID (auto-generates)]@row, " ")
I need to add another selection from my Intake Status row, "Pod 2 - Health Services" so that whenever someone selects either of these two from the drop down it will auto generate a client number.
I've tried multiple formulas and the system says that I don't have the syntax quite right, that lets me know that I'm on the right path.
=IF([Intake Status]@row = "Assigned to CHC", "C", =IF([Intake Status]@row = "Pod 2 - Health Services", "C"+ [Intake ID (auto-generates)]@row, " ")))