
3 respuestas
Amy,
If you just need to add a Date field to the object that displays the same information as your Text field, you can do this by creating a formula field:
Formula Data Type = DateDATE(
VALUE("20"&RIGHT(Text_Date__c, 2)),
VALUE(LEFT(Text_Date__c, 2)),
VALUE(MID(Text_Date__c, 4, 2))
)
* Use the
Insert Field button when composing the formula to select the correct field API name (I'm guessing on Text_Date__c)
If you already have a traditional Date field on the object that you want to update when the Text Date field is populated, you can use either a workflow rule or Process Builder to do a field update using the above formula.