You need to sign in to do that
Don't have an account?
need help with a formula field
Hello Everyone,
I need to create a formula field off of the Created by Date. I'm looking to create a field that will calculate the following:
2 weeks after created date
30 days after created date
60 days after created date
90 days after created date
I have looked over documents but still hard to understand. if you could EXPLAIN to me how i create and the syntax format that would be greatly appreciated.
I need to create a formula field off of the Created by Date. I'm looking to create a field that will calculate the following:
2 weeks after created date
30 days after created date
60 days after created date
90 days after created date
I have looked over documents but still hard to understand. if you could EXPLAIN to me how i create and the syntax format that would be greatly appreciated.
1. Get the date value for CreatedDate. This would remove the time. So just use DATEVALUE(CreatedDate)
2. Add the number of days to it
So finall your formula would be
2 weeks after created date -- DATEVALUE(CreatedDate) + 14
30 days after created date -- DATEVALUE(CreatedDate) + 30
60 days after created date -- DATEVALUE(CreatedDate) + 60
90 days after created date -- DATEVALUE(CreatedDate) + 90
Please mark the answer as Best Answer if it solves your query.
Create a formula field with a return type of 'Number' and 'Decimal Places' set to '0'. With the formula being 'NOW() - CreatedDate'. This would then give you a count of the days between the two date values.
From here you could either create another formula field that takes the number of days value and sets it to some value that identifies which section the result falls into... Maybe you could use a CASE statement or some IF statements to do that.
Or do the checking in the report somewhere...
Just an option... up to you..