Hey Daniel, I’ve put something together here for you

The screenshot above is set up as demo data to break down the logic and to show the expected results based on the different Today
values, and the actual formula can be found in the field Actual Formula
as well as attached below
Pretty sure there’s a simpler way to do this but eh, this is what I could come up with hah
IF(
MOD(
DATETIME_DIFF(
TODAY(),
DATETIME_FORMAT(
'01/07/2022',
'DD/MM/YYYY'),
'days'
),
14
) = 0,
TODAY(),
DATEADD(
TODAY(),
(14 - MOD(
DATETIME_DIFF(
TODAY(),
DATETIME_FORMAT(
'01/07/2022',
'DD/MM/YYYY'
),
'days'
),
14
)
),
'days'
)
)
Hey Daniel, I’ve put something together here for you

The screenshot above is set up as demo data to break down the logic and to show the expected results based on the different Today
values, and the actual formula can be found in the field Actual Formula
as well as attached below
Pretty sure there’s a simpler way to do this but eh, this is what I could come up with hah
IF(
MOD(
DATETIME_DIFF(
TODAY(),
DATETIME_FORMAT(
'01/07/2022',
'DD/MM/YYYY'),
'days'
),
14
) = 0,
TODAY(),
DATEADD(
TODAY(),
(14 - MOD(
DATETIME_DIFF(
TODAY(),
DATETIME_FORMAT(
'01/07/2022',
'DD/MM/YYYY'
),
'days'
),
14
)
),
'days'
)
)
Thanks Adam. It certainly works. Seems a bit unfortunate have to go this long way to replicate an otherwise simple Excel formula, but it does work.