Help

The Community will be temporarily unavailable starting on Friday February 28. We’ll be back as soon as we can! To learn more, check out our Announcements blog post.

Date formula referring to 2 feilds

Topic Labels: Formulas
1063 2
cancel
Showing results for 
Search instead for 
Did you mean: 
Shannon_Bradley
7 - App Architect
7 - App Architect

Hello wonderful community! I am still having trouble wrapping my brain around IF/THEN situations and thought I would just ask :slightly_smiling_face:
I have 2 date fields in my record:

Join Date
Cancel Date

I have a formula field that calculates months committed based on todays date that is working great:

DATETIME_DIFF(
NOW(),
{Patronage Since Date},
‘months’
)

But I want to have the formula look for a Cancel date and use that first…and if there is no cancel date to go ahead and use todays date. How to I amend my formula? Thank you so much!

2 Replies 2
Kamille_Parks
16 - Uranus
16 - Uranus
DATETIME_DIFF(
   IF({Cancel Date}, {Cancel Date}, NOW()),
   {Patronage Since Date},
   'months'
)
Shannon_Bradley
7 - App Architect
7 - App Architect

Thank you so much! This seems to have worked perfectly :slightly_smiling_face: