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

Announcements
Join us to spark ideas for how to put the latest capabilities into action. Register here!
cancel
Showing results for 
Search instead for 
Did you mean: 
Naushad07
Contributor III
Contributor III

Date and Month Mismatch

Hi All,

I am trying to extract the month name from Date. This is what I tried in the load script

Date,

Month(Date) as MONTH

I have created a Listbox for Date and MONTH both in the dashboard. However, When I click on MONTH, it's picking up  dates from other months. I have attached a snapshot of two list boxes.

 Any suggestions on how to correct this?

I am getting the Date field from Google Analytics QlikSense Connector.

Labels (2)
1 Solution

Accepted Solutions
sunny_talwar

Try this

Date#(Date, 'YYYYMMDD') as Date,
Month(Date#(Date, 'YYYYMMDD')) as MONTH

View solution in original post

1 Reply
sunny_talwar

Try this

Date#(Date, 'YYYYMMDD') as Date,
Month(Date#(Date, 'YYYYMMDD')) as MONTH