Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
sqlpuzzle
Contributor III
Contributor III

Drill Down Line Chart

Hi ,

 

Doing a simple line chart.

The x-axis dimension should be Year ->  Month-Year -> Date-Month-Year in a drilldown or a cyclical.

The measure should be the count of a filed with respect to the above dimension.

How can this be done?

A sample is attached.

 

 

Labels (1)
1 Solution

Accepted Solutions
QFabian
Specialist III
Specialist III

Hi @sqlpuzzle , try doing this in your script :

 


[Data]:
LOAD Id,
Date(floor(date),'DD MMM YYYY') as date_month_year,
monthname(date) as month_year,
year(date) as year
FROM
data.csv
(txt, codepage is 1252, embedded labels, delimiter is ',', msq);

 

QFabian

View solution in original post

1 Reply
QFabian
Specialist III
Specialist III

Hi @sqlpuzzle , try doing this in your script :

 


[Data]:
LOAD Id,
Date(floor(date),'DD MMM YYYY') as date_month_year,
monthname(date) as month_year,
year(date) as year
FROM
data.csv
(txt, codepage is 1252, embedded labels, delimiter is ',', msq);

 

QFabian