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

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
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

Labels (1)
1 Solution

Accepted Solutions
sunny_talwar
MVP
MVP

May be use this as your dimension:

Date(Floor([Date de creation]))

View solution in original post

3 Replies
sunny_talwar
MVP
MVP

May be use this as your dimension:

Date(Floor([Date de creation]))

sunny_talwar
MVP
MVP

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.