Skip to main content
Solved

Setting a specific time

  • August 29, 2021
  • 1 reply
  • 3 views

Hello,

Currently, this is the formula in the column to make it display the date of the upcoming Wednesday, but the times are random. I want to make the times in this column to all be 7:00am. Is there anyway to do this?

IF(3-WEEKDAY({Submitted at})<=0,
DATEADD({Submitted at},3-(WEEKDAY({Submitted at}))+7,'days'),
DATEADD({Submitted at},3-(WEEKDAY({Submitted at})),'days'))

Best answer by JonathanBowen

Hi @Sophia - my guess is that the formula is just picking up the time of the Submitted at field. You can force the Send Date field to 7am - something like this:

DATETIME_PARSE(DATETIME_FORMAT({Send Date}, 'MM/DD/YYYY 07:00'))

This just formats the date with a hard-coded 7am start and DATETIME_PARSE around this forces it back to date object.

View original
Did this topic help you find an answer to your question?

1 reply

JonathanBowen
Forum|alt.badge.img+18
  • Inspiring
  • 1110 replies
  • Answer
  • August 29, 2021

Hi @Sophia - my guess is that the formula is just picking up the time of the Submitted at field. You can force the Send Date field to 7am - something like this:

DATETIME_PARSE(DATETIME_FORMAT({Send Date}, 'MM/DD/YYYY 07:00'))

This just formats the date with a hard-coded 7am start and DATETIME_PARSE around this forces it back to date object.


Reply