function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
ankit dangreankit dangre 

hello all, i want to know formula(Date )for Expiry date of passport with the help of issue date and expiry date is 10years from date of issue

Best Answer chosen by ankit dangre
Maharajan CMaharajan C
Hi Ankit,

Try the below formula:
 
DATE( 
YEAR(issue_date__c) + 10, 
MONTH(issue_date__c), 
DAY(issue_date__c)
 )

Thanks,
Maharajan.C