Apr 11, 2022 03:30 PM
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”)
)
)
)
Solved! Go to Solution.
Apr 11, 2022 09:20 PM
Hey @Roehner_Ryan!
Welcome in!
Try this :winking_face:
IF(
{Client Services},
DATEADD(
TODAY(),
4,
'weeks'
)
)
Apr 11, 2022 09:20 PM
Hey @Roehner_Ryan!
Welcome in!
Try this :winking_face:
IF(
{Client Services},
DATEADD(
TODAY(),
4,
'weeks'
)
)
Apr 12, 2022 09:03 AM
thank you so much for your help Ben.