SOLVED
Formula that equals today's date plus 1
Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Mute
- Printer Friendly Page
Khristian_Evans
8 - Asteroid
‎02-20-2025
01:17 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Labels:
- Labels:
- Preparation
6 REPLIES 6
binuacs
21 - Polaris
‎02-20-2025
01:28 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
@Khristian_Evans I assume your date is in the format of mm/dd/yyyy
DateTimeFormat(DateTimeAdd(DateTimeParse([Date],'%m/%d/%Y'),1,'day'),'%m/%d/%Y')
‎02-20-2025
02:07 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
yyyymmdd
‎02-20-2025
02:32 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
yyyymmdd format
add a day to the date of when workflow is ran
so if today (20250220)
output should be 20250221
binuacs
21 - Polaris
‎02-20-2025
02:40 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
DateTimeFormat(DateTimeAdd(DateTimePArse(ToString([Date]),'%Y%m%d'),1,'day'),'%Y%m%d')
‎02-20-2025
02:46 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Null return, can you help with this?
15 - Aurora
‎02-20-2025
03:01 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
You may try changing the data type to String rather than Date.
Date type only accepts strings formated as YYYY-MM-DD.
