Skip to main content
Announcements
Qlik Connect 2025: 3 days of full immersion in data, analytics, and AI. May 13-15 | Orlando, FL: Learn More
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Newbie QV User - Aligning Dates

Hello,

I have a question. I've just started using Qlikview and aligning reports for 2013 versus 2014 sales.

In 2013, one of the reports was divided by quarter (a column labelled "quarter") and the 2014 is now broken out by month. I need month detail so how do I in the extract script get a single tab to make all the dates come out as months? 

2 Replies
Not applicable
Author

Do you have date field for the 2013 report? Then you can use month('datefiled'). If not can you upload a sample file?

Thanks.

maxgro
MVP
MVP

load

....

date,

year(date) as yearfield,

month(date) as monthfield,

year(date) & '-' & month(date) as ...

.....