-if record type name = "A"; expiration date = "service start date" + 1 month
-if record type name = "B"; expiration date = "service start date" + 10 months
-if record type name = "B"; expiration date = "service start date" + 12 months
Can anyone provide guidance on how to accomplish this?
4 risposte
Your "basic" Formula would be Service_Start_Date__c +
CASE(RecordType.Name,
"Type A", 30,
"Type B", 300,
"Type C", 360,
0)
If you use Calendar Months it gets a little trickier