You need to sign in to do that
Don't have an account?

Can a field text be saved in different ways depending on picklist?
I have a field text called "Nro_Ruc__c", and I want to save it in different ways depending of the values of a picklist called Identificador__c
Example:
If Identificador__c == RUC
the Nro_Id__c will be saved like: "12345678-9"
If Identificador__c == CI
the Nro_Id__c will be saved like: "123.456.789"
If Identificador__c == TEDF
the Nro_Id__c will be saved like: "12-34-56-78-99"

Example:
If Identificador__c == RUC
the Nro_Id__c will be saved like: "12345678-9"
If Identificador__c == CI
the Nro_Id__c will be saved like: "123.456.789"
If Identificador__c == TEDF
the Nro_Id__c will be saved like: "12-34-56-78-99"
Otherwise, you're looking at a simple process that can update the Nro_Id__c field when Indentifcador__c is a certain value.