Skip to main content
Answer

Format Date GI

  • October 16, 2024
  • 3 replies
  • 240 views

Hello to everyone

Im doing a GI to show me the run out date, i already made to show me the date but it show me with the time.. how can i get to forces to show me only the date mm/dd/yyyy

 
thank you

 

Best answer by Naveen Boga

@JavierGtz  Another simple solution. 

I’m not sure what DACs that you are using in your GI, but if you any of the DAC is having the just a DATE field like (in the SOOrder, we have OrderDate is a just a field), you can mention field in the Schema field so that it will give you the simple DATE in your GI.

 

Here is an example for your reference.

 

 

 

3 replies

nhatnghetinh
Captain II
Forum|alt.badge.img+11
  • Captain II
  • October 16, 2024

Hi @JavierGtz 

Please use the Concat function to concatenate strings as in the following example.
=Concat(CStr(Month([FinPeriod.StartDate])),'/' , CStr(Day(  [FinPeriod.StartDate])),'/',CStr(Year(  [FinPeriod.StartDate])))

 

Please refer to the post below.

 

Best Regards,

NNT


Naveen Boga
Captain II
Forum|alt.badge.img+19
  • Captain II
  • Answer
  • October 16, 2024

@JavierGtz  Another simple solution. 

I’m not sure what DACs that you are using in your GI, but if you any of the DAC is having the just a DATE field like (in the SOOrder, we have OrderDate is a just a field), you can mention field in the Schema field so that it will give you the simple DATE in your GI.

 

Here is an example for your reference.

 

 

 


  • Author
  • Freshman I
  • October 16, 2024

@JavierGtz  Another simple solution. 

I’m not sure what DACs that you are using in your GI, but if you any of the DAC is having the just a DATE field like (in the SOOrder, we have OrderDate is a just a field), you can mention field in the Schema field so that it will give you the simple DATE in your GI.

 

Here is an example for your reference.

 

 

 

Thanks @Naveen Boga now its showing only the date.