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

Announcements
Join us to spark ideas for how to put the latest capabilities into action. Register here!
cancel
Showing results for 
Search instead for 
Did you mean: 
edemerdjieva
Partner - Creator
Partner - Creator

Generic calendar in QlikView ?

Hi,

I would like to have a generic calendar in QlikView rather than a calendar based on a dimension. It should display dates for several years.

I tried one or two techniques but it didn't worked.

What is the simplest way or the best way ?

 

Thank you in advance.

Labels (1)
1 Reply
Mark_Little
Luminary
Luminary

Hi,

If you have used some calendar scripts you can create your own by setting the Max and Min manually.
Like
let vStart = DATE('01/01/2010');
let vEnd = DATE('01/01/2020');
let vRange = $(vEnd) - $(vStart);
Mark