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

How can I truncate the time off my dates that are coming in the format 5/03/2016 12:00:00 AM

I am working to come up the learning curve

15 Replies
sunny_talwar

I guess you are right, from the image it seems that the dates are read as date (and not text) because of their right orientation. A simple Date(Floor(DATE_CREAT)) as Date should work also.

Not applicable
Author

You rock!  Got it with the Floor!

Not applicable
Author

You rock!  Got it with the Floor!

sunny_talwar

Great, We are glad we were able to help

Not applicable
Author

sql statement

CONVERT (varchar, table name, 103) as Date

Not applicable
Author

rectifying

sql statement

CONVERT (varchar, column name, 103) as Date

SQL SELECT

"HOST_ORDER",

"ORDER_NUM",

"CUST_NUM",

"SHIP_TO",

CONVERT (varchar, DATE_CREAT, 103) as Date

    "DATE_CREAT",

    "DATE_ORDER",

    "DATE_CANCL",

    "DATE_REQD"

FROM "A1Warehouse"."dbo"."PICKHEAD";