Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Timestamp data need to convert to string

I've an database column which data type is timestamp(ex. "2006-03-14 00:00:00") I need to convert this data as 03/14/2006 format in qliksense. Please help.

4 Replies
m_woolf
Master II
Master II

Do you really want this as a string?

Date(Floor(YourTimeStampField),'MM/DD/YYYY') as Your DateField;

Colin-Albert

Have a look at this post for the options available in QlikView for date & time formatting.

Get the Dates Right

sunny_talwar

Try this:

Date(Floor(Date#(YourTimeStampField, 'YYYY-MM-DD hh:mm:ss')), 'MM/DD/YYYY')

Not applicable
Author

Still getting error. data type column is Timestamp without timezone.