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

Announcements
Join us in Bucharest on Sept 18th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

How can I extract Date and Time from Timestamp?

Hello,

Attached is the format of the data in Excel:

I need to Extract Date and Time as separate fields.

I used this:

Timestamp("Changed Time Stamp",'D/MM/YYYY hh:mm:ss TT')

But am still not able to pull out date separately.

What can I use to get Date as its own and Time as its own?

1 Solution

Accepted Solutions
sunny_talwar

May be this:

Date(Floor([Changed Time Stamp])) as Date,

Time(Frac([Changed Time Stamp])) as Time

View solution in original post

3 Replies
sunny_talwar

May be this:

Date(Floor([Changed Time Stamp])) as Date,

Time(Frac([Changed Time Stamp])) as Time

swuehl
MVP
MVP

For more information, have a look at

QlikView Date fields

(applies also to timestamps)

Why don’t my dates work?

Get the Dates Right

varaprasad0816
Creator II
Creator II

Correct Answer

I have executed