I need a formula to add one day to a date but keep the time the same. We receive data and midnight has the incorrect date. I have tried:
IF [END_TIME] = '%Y-%m-%d 00:00:00' then DateTimeFormat(DateTimeAdd(DateTimeParse([END_TIME],"%Y-%m-%d"),+1,"days"),'%Y-%m-%d') else [END_TIME] ENDIF
but it just returns the same that already exists.
Below is what I have and what I want
| END_TIME |
| 2023-06-15 00:00:00 |
| 2023-06-17 05:00:00 |
| 2023-06-19 00:00:00 |
| 2023-09-14 03:00:00 |
to
| END_TIME |
| 2023-06-16 00:00:00 |
| 2023-06-17 05:00:00 |
| 2023-06-20 00:00:00 |
| 2023-09-14 03:00:00 |