How can I add 1 day with date diff
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Mute
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Hello:
This is the formula I have used.
DateTimeDiff([Today],[Task Created Date],'days')
I want to add (+1) day with the date diff. I am getting Null Output. How can I fix it?
Thanks
Solved! Go to Solution.
- Labels:
- Workflow
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Sorry, when you say add one day, do you mean work out the difference and then make the number 1 day higher?
If so that would be: DateTimeDiff([Today],[Task Created Date],'days') + 1
Or did you mean that you wanted to add one day onto a date?
If so that would be: DateTimeAdd([Task Created Date],1,"days")
Thanks
Joe
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Thank you. Brilliant. Appreciate your support in my learning process, Joe. Have a great day!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Thank you. Appreciate your help.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
@Kinetic_analytics You're welcome.
Nice addition @binuacs keeping today's date as part of the expression 😀
