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

Formula to show CreatedDate last 2 days
Hello
I am trying to create a formula to show tickets created last 2 days. In a report I thought about using a literal date range filter to show last n days nut I cant see an option to do a custom last n days only 7, 30,60,90,120.
Is there a formula to show CreateDate last 2 days?
Many thanks
Sonya
Sonya
I am trying to create a formula to show tickets created last 2 days. In a report I thought about using a literal date range filter to show last n days nut I cant see an option to do a custom last n days only 7, 30,60,90,120.
Is there a formula to show CreateDate last 2 days?
Many thanks
Sonya
Sonya
CreatedDate is not a Date datatype field it's a DateTime datatype, you need to convert it using a DATEVALUE function like this.
Try this TODAY () - DATEVALUE(CreatedDate)
All Answers
CreatedDate is not a Date datatype field it's a DateTime datatype, you need to convert it using a DATEVALUE function like this.
Try this TODAY () - DATEVALUE(CreatedDate)