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

charts with daily & weekly data (Rolling Weekly)

Hi, I want a chart with daily and weekly data as shown in attached picture.

Columns

Date --- Jan 1st to date

calls duration

please help me out in this by uploading an sample if possible.

Thanks in Advance

2 Replies
Not applicable
Author

You could create a cyclical dimension with 2 fields you create in the load script.

For example if you have StartDate as your daily date. You could:


Load
Date(daystart(StartDate), 'DD-MMM-YY') AS StartDateDayView,
Date(WeekEnd(StartDate), 'DD-MMM-YY') as StartDateWeekView
FROM .......(enter path)
WHERE StartDate > '01-Jan-2010'


Not applicable
Author

Something like this: