Skip to main content
Announcements
Have questions about Qlik Connect? Join us live on April 10th, at 11 AM ET: SIGN UP NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

Date, Week, Month, Quarter and Year data filtration.

Hi Team,

Need assistance for a requirement which is like below:

I want Day, Week, Month, Quarter, Year selection option in my chart.

If anyone select as date then the date calendar should populate and the user should be able to select one or more dates in the calendar, accordingly data should filter out and shown to user.

similarly on month selection, 12 months should populate and User can be able to select the desired month to view the data. Similar for Week, Quarter and Year.

Basically this requirement need to see the reports in daily, weekly, monthly, quarterly and yearly basis.


Please let me know how it could be possible to achieve or suggest any alternate way if we can do. Also suggest if this can be done by using some extensions.


Any suggestions and helps would be highly appreciated.


Thanks and Regards,

Ipsita

2 Replies
tresesco
MVP
MVP

Is this requirement for qlik sense or qlik view?

vishweshwarisun
Partner - Creator
Partner - Creator

Hi,

you will have to create a master calender.

Master Calendar Generation Script

CalendarMaster:

LOAD

    Date(InvoiceDate) AS InvoiceDate,

    Year(InvoiceDate) AS Year,

    'Q' & Ceil(Month(InvoiceDate) / 3) AS Quarter,   

    Month(InvoiceDate) As Month,

    Day(InvoiceDate) As Day,

    Week(InvoiceDate) As Week;