You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
Hi there
I thought this is easy :) I have a form with these fields
lengthDays --> Numeric
durationDate --> DateTime Interval
a rule to perform the following
durationDate.endDate=([entry.durationDate.startDate.add(86400000*[entry.lengthDays])])
however for some reason the endDate of durationDate doesn't get populated, not sure why. I am sure its something silly, it works if I change the duration date into 2 fields ( start and end date)
am I loosing it :) please help, thanks
Hi @Markisio
This is one field with start and end dates and expects the value format as this: startDateTimestamp-endDateTimestamp, so you do this as follows
durationDate=[entry.durationDate.startDate]-[entry.durationDate.startDate.add(86400000*[entry.lengthDays])]
Alex
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.