Discussion Board for collaboration related to QlikView App Development.
Hi,
I have the following dates imported from an excel file:
December 1, 2015
December 2, 2015
December 3, 2015
December 4, 2015
How would I format them to mm/dd/yyyy in the import script?
Best,
Matt
you can define LongMonthNames
and use the MMMM format code
as explained here
you can define LongMonthNames
and use the MMMM format code
as explained here
May be this:
Date(DateField, 'MM/DD/YYYY') as DateField
try some thing like this...
Date(Date#(Date_Field,'MMMM DD, YYYYY'),'YYYY-MMM-DD') as Date_Field_New
Date(Date#(Date_Field,'MMMM DD, YYYYY'), 'MM/DD/YYYY') as Date_Field_New
Hi,
Try like this
Data:
LOAD
*,
Date(Date#(DateFieldName,'MMMM DD, YYYY'), 'MM/DD/YYYY') AS DateField_New
From DataSource;
Hope this helps you.
Regards,
jagan.
try like this?
=date(date#(YourDateField,'YourExcelDateFormat'),'YourRequiredFormat') as NewDate
Hi,
Atlast I am attaching a file.
thanks
Kiran Kumar