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: 
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