You need to sign in to do that
Don't have an account?

Date field Formula Question
I currently have a date field "Invoice 1" and a formula field "Invoice Created Date" - the formula field is simple - "Invoice 1" - 30 to set the created date as 30 days before the due date of the invoice... however we need to make sure the Invoice created date does not get set for dates in the past.. how do I create a formula that says..if the Invoice 1 date is less than 30 days set as today else set as - 30?
So your formula will be like this.
If it works for you kindly mark it as an answer !
All Answers
I believe this formula is what you requested:
IF(TODAY()- Invoice_1__c <30,TODAY(),Invoice_1__c -30)
I assume Invoice_1__c is the API name of your "Invoice 1" field. The function "TODAY()" gives the current date. The formula is saying if the "Invoice 1" date is within 30 days of today when use today's date otherwise use "Invoice 1" minus 30 days.
If that response helps you please "Like" my comment.
Chris
So your formula will be like this.
If it works for you kindly mark it as an answer !