Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
tell me how to covert date format Jan 14" into "1/1/2014"
Hi,
one solution:
=Date(Date#('Jan 14', 'MMM YY'), 'M/D/YYYY')


hope this helps
regards
Marco
Hi,
If it is in Date Format then try
Date(Date#(dateField,'MMM YY'),'D/M/YYYY') as newField
Or You can use MakeDate()
like
MakeDate(Year(Date#(dateField,'MMM YY')),Month(Date#(dateField,'MMM YY')),'1') as NewDateField
Regards
Hi,
Assuming that you have proper date field.
Try this
Date(date#([DateField],'MMM YY'),'M/D/YYYY') as NewDate
Regards
ASHFAQ