Skip to main content
Solved

Create due date from checkbox selection

  • April 11, 2022
  • 2 replies
  • 22 views

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”)
)
)
)

Best answer by Ben_Young1

Hey @Roehner_Ryan!
Welcome in!

Try this :winking_face:

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

2 replies

Ben_Young1
Forum|alt.badge.img+22
  • Brainy
  • Answer
  • April 12, 2022

Hey @Roehner_Ryan!
Welcome in!

Try this :winking_face:

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

  • Author
  • New Participant
  • April 12, 2022

Hey @Roehner_Ryan!
Welcome in!

Try this :winking_face:

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

thank you so much for your help Ben.