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

Creating a KEY with datetime stamp and date

I created a Key to link the two sets of data but the second key is a date time stamp.

I need to convert it to just a date

need to remove time part of it

1 Solution

Accepted Solutions
sunny_talwar
MVP
MVP

Try this:

Date(Floor([Checked]))&' , '&[CheckedBy] as Key,

View solution in original post

4 Replies
sunny_talwar
MVP
MVP

What's the script used to create the key?

Not applicable
Author

[Checked]&' , '&[CheckedBy] as Key,

sunny_talwar
MVP
MVP

Try this:

Date(Floor([Checked]))&' , '&[CheckedBy] as Key,

vinieme12
Champion III
Champion III

Floor(timestampfield) or Date(timestampfield,'YourDateFormat')

Vineeth Pujari
If a post helps to resolve your issue, please accept it as a Solution.