Greetings! I am pretty new to Airtable, so forgive me if this is a silly question: For reference, I am maintaining a book of business for an insurance office. This office manages multiple lines of business (home, auto, life, business, etc... which are a single select field in my table). I am trying to create a column that displays the "next renewal", based on the field "inception date". Here is what I have so far:
Help with recurring dates in formula
IF(
DATETIME_FORMAT({Inception Date}, "MMDD") > DATETIME_FORMAT(TODAY(), "MMDD"),
DATETIME_PARSE(
DAY({Inception Date}) & "-" &
MONTH({Inception Date}) & "-" &
YEAR(TODAY()),
"D-M-YYYY"
),
DATETIME_PARSE(
DAY({Inception Date}) & "-" &
MONTH({Inception Date}) & "-" &
(YEAR(TODAY()) + 1),
"D-M-YYYY"
)
)
this works great for displaying the renewal date for all lines that are a 12 month term. What can I add to only add 6 months to the date if the {line} field is "auto"? basically I want to add a year to all lines except auto, then only add 6 months... is it a switch command? I've been stuck on this all day..Please help!
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.

