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

Announcements
Join us in Toronto Sept 9th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Date filters

Hi all,

I am new to qlikview.

Please advise how to make filters like year, quarter, month, dates as seen in many apps for example Executive Dashboard in gettin started section of Qlikview.

Please give some useful links

Thanks in advance!

BR

SAK

4 Replies
swuehl
MVP
MVP

Create fields for year, quarter, month in your data model (e.g. using a master calendar), then create list box sheet objetcs.

I would suggest that you download and go through the QV tuturial, that will guide you through these steps, AFAIR.

Hope this helps,

Stefan

Gysbert_Wassenaar
Partner - Champion III
Partner - Champion III

A Useful Link (I hope).


talk is cheap, supply exceeds demand
Not applicable
Author

Hi Gysbert

Can you please send me PE Ed enabled QVW of this tutorial?

Many thanks in advance!

BR

Shoaib

jagan
Partner - Champion III
Partner - Champion III

Hi,

Try script below

TableName:

LOAD

     DateField,

     Year(DateField) AS Year,

     Month(DateField) AS Month,

     Week(DateField) AS Week,

     'Q1' & Ceil(Month(DateField)/3) AS Quarter

FROM DataSource;

Regards,

Jagan.