I need the date output in a GI to be yyyy/mm/dd for a third party integration but we use mm/dd/yyyy as a default. How can I flip this around?
Page 1 / 1
Hi
=Concat( CStr(Year(rSOOrder.OrderDate])) , Cstr('/') , CStr(Month( hSOOrder.OrderDate])) , Cstr('/') , CStr(Day(DSOOrder.OrderDate])))
Also attached screenshot for reference.
Hi
Concat( CStr(Year(rSOOrder.OrderDate])) , Cstr('/') ,
IIf(Month(tSOOrder.OrderDate]) < 10, '0'+CStr(Month(tSOOrder.OrderDate])), CStr(Month(tSOOrder.OrderDate]))) , Cstr('/') ,
IIf(Day((SOOrder.OrderDate]) < 10, '0'+CStr(Day((SOOrder.OrderDate])), CStr(Day((SOOrder.OrderDate]))))
Reply
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.