Skip to main content
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

Try this:

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

View solution in original post

4 Replies
sunny_talwar

What's the script used to create the key?

Not applicable
Author

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

sunny_talwar

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.