I have a formula I can’t figure out.
My column that I want as a formula is called “Forecasted SCIP Received” To calculate this date, I need to use another column called “Actual Site Walk Date” plus a “Duration” column. However, if “Actual Site Walk Date” is empty, I need it to use “Forecasted Site Walk Date” instead, so: If the “Actual Site Walk Date” is not Empty, then “Actual Site Walk Date” + “Duration”. But if Actual Site Walk Date is empty, then “Forecasted Site Walk Date” + “Duration” How do I write this?
Solved
Formula Help Needed
Best answer by kuovonne
You can use a formula field with the IF function and DATEADD. They are documented in the formula field reference. Note that duration fields store time in seconds, so you need to specify to add seconds.
IF({Actual Site Walk Date},
DATEADD({Actual Site Walk Date}, {Duration}, 'seconds'),
DATEADD({Forecasted Site Walk Date}, {Duration}, 'seconds')
)
If this answers your question, please mark this post as the solution. Otherwise, could you please give a bit more details and a screen capture?
Login to the community
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.
