Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
hi All ,
I wanted to know how to convert the formate from , Apr 1,2014 TO 04-10-2014.
Thanks in Advance
Hi,
Try this way in any text object
=Date(Date#('Apr 1,2014', 'MMM D,YYYY'), 'MM-DD-YYYY')
Load
Date(Date#(DateField, 'MMM D,YYYY'), 'MM-DD-YYYY') as DateFieldNew
From Location;
Regards
Anand
date(yourdateatribute, 'DD-MM-YYYY' )
Hi,
Try like this
Date(Date#(FieldName, 'MMM D,YYYY'), 'MM-DD-YYYY')
Hope this helps you.
Regards,
Jagan.
Hi
give
Date(Date#('Apr-10-2014','MMM-DD-YYYY'),'MM-DD-YYYY')
a try
hope that helps
Joe
Date(Date#('Apr-10-2014','MMM-DD-YYYY'),'MM-DD-YYYY')
It work fine, if MonthNames variable contain 'Apr'.
Hi,
Try this way in any text object
=Date(Date#('Apr 1,2014', 'MMM D,YYYY'), 'MM-DD-YYYY')
Load
Date(Date#(DateField, 'MMM D,YYYY'), 'MM-DD-YYYY') as DateFieldNew
From Location;
Regards
Anand
Hi Wrestler,
=Date(ShipDate,'DD-MM-YYYY')
Regards
Neetha
Hi,
=Date(Date#(DataTeste,'MMM-DD-YYYY'),'MM-DD-YYYY')
Regards
André Gomes
date(date#('Apr 1,2014','MMM D,YYYY'),'DD-MM-YYYY')
Thanks anand
u helped me out