Skip to main content
Solved

Converting date to text

  • June 28, 2023
  • 2 replies
  • 204 views

Forum|alt.badge.img+12
  • Known Participant

Is there a formula I can use to convert a date (6/28/2023) to a text (June 2023)? It'll make it easy for me to group by that month.

Best answer by Darryl_Oliver

Limi,

Take a look at the Date & Time functions in the Formula Field Reference.

I believe your solution will look something like this: DATETIME_FORMAT({Date Field},'MMMM YYYY')

2 replies

Darryl_Oliver
Forum|alt.badge.img+8
  • Inspiring
  • Answer
  • June 28, 2023

Limi,

Take a look at the Date & Time functions in the Formula Field Reference.

I believe your solution will look something like this: DATETIME_FORMAT({Date Field},'MMMM YYYY')


Forum|alt.badge.img+12
  • Author
  • Known Participant
  • June 28, 2023

Limi,

Take a look at the Date & Time functions in the Formula Field Reference.

I believe your solution will look something like this: DATETIME_FORMAT({Date Field},'MMMM YYYY')


That is EXACTLY what i needed. Thank you!!