Skip to main content

I am completely new to this and appreciate any help. I would like to be able to create a due date 4 weeks from when the clients select checkbox is ticked.

This is where I am at and I can’t seem to get it to work.

IF(
{Client Selects}=“1”
(DATEADD(TODAY(4, “week”)
)
)
)

Hey @Roehner_Ryan!
Welcome in!

Try this :winking_face:

IF(
    {Client Services},
    DATEADD(
        TODAY(),
        4,
        'weeks'
    )
)

Hey @Roehner_Ryan!
Welcome in!

Try this :winking_face:

IF(
    {Client Services},
    DATEADD(
        TODAY(),
        4,
        'weeks'
    )
)

thank you so much for your help Ben.