Hi folks,
I am fairly new to the formula game and I’m working on a formula where I have 3 columns with dates
{LOI Target}, {ETA to AMZ}, {Content Delivery Date}
and i’ll need to
- calculate the latest date out of the three of these
- Add 7 days to the latest date
- Calculate to the next Tuesday
- input date correctly into column
It’s a bit of a monster. Any help even in little pieces would be great.
I’ve been wandering the forums looking for help and this one was the closest formula to one of my needs (latest date out of the 3 dates).
So, is the following formula on the right track for what I want? I know that the MAX function doesn’t really bode well with dates but that’s about all I know.
IF(
OR(
{LOI Target},
{ETA TO AMZ},
{Content Delivery Date}
),
DATETIME_PARSE(
MAX(
IF({LOI Target}, VALUE(DATETIME_FORMAT({LOI Target},’MM/DD/YYYY’)), 999999999999999),
IF({ETA to AMZ}, VALUE(DATETIME_FORMAT({ETA to AMZ},’MM/DD/YYYY’)), 999999999999999)
) ,
IF({Content Delivery Date}, VALUE(DATETIME_FORMAT({Content Delivery Date},’MM/DD/YYYY’)), 999999999999999),
‘MM/DD/YYYY’
)
)
If I could nail down this first part (calculating the latest date out of the three), I can probably drag myself through the following formulas without much assistance.
Any and all help appreciated!!!