Skip to main content
Answer

Display only Month Name of Date Field in GI Results

  • October 21, 2025
  • 3 replies
  • 56 views

sarahbibelhausen
Freshman II

I am working on an SO Order generic inquiry that lists the Requested On field date as just Month Name (e.g. if date is 10/20/2025 the results should read October). 

 

Here’s my GI edit and the resulting issue. 

 

Best answer by aleksandrsechin

Use the following formula:
=MonthName([SOOrder.RequestDate])
Additionally, make sure to remove the Schema Field value.

As a result:

To make it more readable, you can set a custom caption for the field — in my case, I used "My Caption", as you can see.

3 replies

bwhite49
Captain II
Forum|alt.badge.img+11
  • Captain II
  • October 21, 2025

There is a table called “DateInfo” for this

If you join SOOrder to DateInfo where SOOrder.RequestDate = DateInfo.Date you can use the “Month Name” and “Month” fields to categorize by Month.


Forum|alt.badge.img+3

Use the following formula:
=MonthName([SOOrder.RequestDate])
Additionally, make sure to remove the Schema Field value.

As a result:

To make it more readable, you can set a custom caption for the field — in my case, I used "My Caption", as you can see.


sarahbibelhausen
Freshman II

That worked! =MonthName([SOOrder.RequestDate]) thanks all :)