Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Calander

Hi,

How to  use Make date from this format---  'Jan-2015'

or create this in the form of date Jan-2015   like 1/1/2015 for

Feb 2015 2/1/2015

like this  for whole year

2 Replies
sunny_talwar

Try this:

Table:

LOAD Date(A) as Date

FROM

[calander (1).xlsx]

(ooxml, no labels, table is Sheet1);

maxgro
MVP
MVP

It seems you don't need any interpretation to get a date from your excel

LOAD

     A,

     Date(A, 'MMM-YYYY') as B

FROM

calander.xlsx

(ooxml, no labels, table is Sheet1);

1.png