Help

Re: Formula to return a date based on a "created" date and a variable

Solved
Jump to Solution
501 1
cancel
Showing results for 
Search instead for 
Did you mean: 
Spruce
6 - Interface Innovator
6 - Interface Innovator

Hi all! I am back looking for support with a formula to return a date based on a "created" date and a variable.

So far I've been trying to get an IF statements with a DATETIME_FORMAT included to work, but I'm making no progress...

My Goal: Create a column that shows an Estimated Pickup Date which is either 11 days after the created date, or 6 days after the created date if the "rush" checkbox is ticked.

This is what my columns look like:

Spruce_1-1699568683488.png

Any brilliant minds out there who can point me in the right direction?

Thanks in advance!
Devon

Devon
2 Solutions

Accepted Solutions
stevendasilva
6 - Interface Innovator
6 - Interface Innovator

Hey @Spruce

Check out this video here!  https://youtu.be/NcxcPD1zuaw

This is the formula I used:

IF(Rush, 
DATEADD({Created Date}, 6, 'days'), 
DATEADD({Created Date}, 11, 'days') )
 
Steven Da Silva
 

See Solution in Thread

Spruce
6 - Interface Innovator
6 - Interface Innovator

I figured it out! Asking the question helped me realize what the solution was!
For anyone else, here's @stevendasilva 's formula with the addition of DATETIME_FORMAT:

DATETIME_FORMAT(IF(Rush,
DATEADD(Created, 6, 'days'),
DATEADD(Created, 11, 'days')),'ll')
Devon

See Solution in Thread

3 Replies 3
stevendasilva
6 - Interface Innovator
6 - Interface Innovator

Hey @Spruce

Check out this video here!  https://youtu.be/NcxcPD1zuaw

This is the formula I used:

IF(Rush, 
DATEADD({Created Date}, 6, 'days'), 
DATEADD({Created Date}, 11, 'days') )
 
Steven Da Silva
 

Oh man thank you so much @stevendasilva for the quick reply! Your suggestion is perfect. The only other thing I'd ask, if you have the time, is if there's a way to format the output without the time and in a "friendly date" format (i.e. Nov 9, 2023), or if I have to create an additional column to convert the date format?

Thank you so much!

Spruce_0-1699584406662.png

Devon
Spruce
6 - Interface Innovator
6 - Interface Innovator

I figured it out! Asking the question helped me realize what the solution was!
For anyone else, here's @stevendasilva 's formula with the addition of DATETIME_FORMAT:

DATETIME_FORMAT(IF(Rush,
DATEADD(Created, 6, 'days'),
DATEADD(Created, 11, 'days')),'ll')
Devon