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.

Create due date from checkbox selection

Topic Labels: Formulas
Solved
Jump to Solution
938 2
cancel
Showing results for 
Search instead for 
Did you mean: 
Roehner_Ryan
4 - Data Explorer
4 - Data Explorer

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”)
)
)
)
Screen Shot 2022-04-11 at 3.26.15 PM

Screen Shot 2022-04-11 at 3.24.51 PM

1 Solution

Accepted Solutions
Ben_Young1
11 - Venus
11 - Venus

Hey @Roehner_Ryan!
Welcome in!

Try this :winking_face:

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

See Solution in Thread

2 Replies 2
Ben_Young1
11 - Venus
11 - Venus

Hey @Roehner_Ryan!
Welcome in!

Try this :winking_face:

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

thank you so much for your help Ben.