Skip to main content
Announcements
Introducing Qlik Answers: A plug-and-play, Generative AI powered RAG solution. READ ALL ABOUT IT!
cancel
Showing results for 
Search instead for 
Did you mean: 
SoftUser
Contributor II
Contributor II

Date Picker Not Working

Hi I m new to qliksense and i m using qliksense desktop version 13.9.1

My problem is that I have used a date picker for my worksheet and I used date field as my business date which I got from my QVD file. as suggest by some members I have used following variable in my data model section

SET BUSINESS_DATE = date([Calendar.Date],'DD/MM/YYYY');

But it did not work. I have select the respective range in date picker and it remains same. no result showing in my bar charts.

can some one help me regarding to this issue

Labels (2)
1 Solution

Accepted Solutions
albertovarela
Partner - Specialist
Partner - Specialist

Take a look at the attached qvf. All I changed was:

 

2020-03-23_11-07-03.jpg

 

 

 

View solution in original post

9 Replies
albertovarela
Partner - Specialist
Partner - Specialist

I suggest you to add the BUSINESS_DATE  as a field 

e.g.

YourTableName:

LOAD 

        *, 

         date([Calendar.Date],'DD/MM/YYYY') as BUSINESS_DATE

FROM

        [YourQVD.qvd] (qvd)

;

 

 

SoftUser
Contributor II
Contributor II
Author

Thank you for your response.

I have followed the same but I m getting an error. I have attached that

albertovarela
Partner - Specialist
Partner - Specialist

Instead of using [Calendar.Date] use the date field on your qvd

SoftUser
Contributor II
Contributor II
Author

Thank you for your prompt response.

That also not gonna work. Is there any other configurations needs to done by the date picker calendar settings?

SoftUser
Contributor II
Contributor II
Author

Once I pick a value from filter pane, date picker enables the sales dates of the exact brand. 

when I m going to get the sales sum for an exact date range all the dates are enabled but it's not showing the value. I can't understand what has happened to this. Please refer the screenshot

albertovarela
Partner - Specialist
Partner - Specialist

Can you post some sample data?

SoftUser
Contributor II
Contributor II
Author

please find the sample data.

albertovarela
Partner - Specialist
Partner - Specialist

Take a look at the attached qvf. All I changed was:

 

2020-03-23_11-07-03.jpg

 

 

 

SoftUser
Contributor II
Contributor II
Author

Thank you Alberto, Much Appreciated

Now its working 😃