You need to sign in to do that
Don't have an account?
lil_ranger
Subtract Date
Is there a way to subtract 30 days from a date field in a Visualforce email template? I have a close date that I want to subtract 30 days from.
Thanks!
function readOnly(count){ }
You need to sign in to do that
Don't have an account?
Is there a way to subtract 30 days from a date field in a Visualforce email template? I have a close date that I want to subtract 30 days from.
Thanks!
You should just be able to use a simple formula for this. Something like:
{!MyObj.My_Date__c - 30}
replace MyObj.My_Date__c with your date field.