2 件の回答
Hi Paul, If it will always be entered in that format from the Integration, then we can use a formula date field like this:
DATE(
VALUE(LEFT(Text__c, 4)),
CASE(RIGHT(Text__c, 3),
"Jan", 1,
"Feb", 2,
"Mar", 3,
"Apr", 4,
"May", 5,
"Jun", 6,
"Jul", 7,
"Aug", 8,
"Sep", 9,
"Oct", 10,
"Nov", 11,
"Dec", 12,
null), 1)