Skip to main content
Solved

Date format with day of week

  • April 28, 2022
  • 3 replies
  • 113 views

Forum|alt.badge.img+1

Hi
Is it possible to show the day of the week along with the date in a field?

Best answer by kuovonne

Not in the date field itself, but you can create a formula field that shows the day of the week and display the formula field next to the original field.

DATETIME_FORMAT( {date}, 'dddd' )

3 replies

kuovonne
Forum|alt.badge.img+29
  • Brainy
  • Answer
  • April 28, 2022

Not in the date field itself, but you can create a formula field that shows the day of the week and display the formula field next to the original field.

DATETIME_FORMAT( {date}, 'dddd' )

Forum|alt.badge.img+1
  • Author
  • Participating Frequently
  • April 28, 2022

Not in the date field itself, but you can create a formula field that shows the day of the week and display the formula field next to the original field.

DATETIME_FORMAT( {date}, 'dddd' )

Thank you very much!


Forum|alt.badge.img+1
  • New Participant
  • August 15, 2023

Not in the date field itself, but you can create a formula field that shows the day of the week and display the formula field next to the original field.

DATETIME_FORMAT( {date}, 'dddd' )

Thank you. This is exactly what I was looking for 🙂