Skip to main content

How to show day of next week. like 'next Monday'

  • July 27, 2023
  • 3 replies
  • 24 views

Forum|alt.badge.img+5

Hi ..

 

Hi. 
How can I show 'next week day' .

 I know.  DATETIME_FORMAT(Date, 'dddd'). but anyway I can how 'next Monday' ?

3 replies

TheTimeSavingCo
Forum|alt.badge.img+31

Hmm, looks like you could just do `"next" & DATETIME_FORMAT()`?


Forum|alt.badge.img+21
  • Inspiring
  • 560 replies
  • July 27, 2023

Not the day of the week, but the date of next week?
If so, you can get it with DATEADD({date},1, "weeks") to get the date.


Forum|alt.badge.img+5
  • Author
  • Inspiring
  • 8 replies
  • August 18, 2023

Hmm, looks like you could just do `"next" & DATETIME_FORMAT()`?


This method also does not solve the problem