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

Announcements
Independent validation for trusted, AI-ready data integration. See why IDC named Qlik a Leader: Read the Excerpt!
cancel
Showing results for 
Search instead for 
Did you mean: 
master_student
Creator III
Creator III

graph error

Hello community,

I have a date field in my database that containes date and time as you can see bellow :

Capture.PNG

I would like to create a graph using that date but the problem as you can see bellow is that the same date is reapeated many times

Capture.PNG

Any idea please??

Thanks

1 Solution

Accepted Solutions
sunny_talwar

May be use this as your dimension:

Date(Floor([Date de creation]))

View solution in original post

3 Replies
sunny_talwar

May be use this as your dimension:

Date(Floor([Date de creation]))

sunny_talwar

Alternatively you can also create a only date field in the script:

LOAD Date(Floor([Date de creation])) as DateField,

          [Date de creation]

FROM ....

and then use DateField as your dimension

master_student
Creator III
Creator III
Author

Thanks Sunny.