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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Loading Data From Excel

Hi All,

  I am new to Qlikview. I am loading data from Excel. Time field 'Estimated Start time' in Excel is in 'hh:mm TT' format  e.g '6.00 AM'. But  in qlikview after loading , Time field 'Estimated Start time' is coming like '6.00 a' inside of '6.00 AM'. So I use timestamp function.

Timestamp(Timestamp#([Estimated Start time (EST)],'hh:mm:ss TT'),'h:mm:ss TT') as Estimated_Start_time

   But after this I am not getting any data in Estimated_Start_time listbox.  Please suggest something.

1 Solution

Accepted Solutions
Not applicable
Author

Please try this:

date([Estimated Start time (EST)], 'h:mm:ss TT')

Kind regards

View solution in original post

3 Replies
Not applicable
Author

Please try this:

date([Estimated Start time (EST)], 'h:mm:ss TT')

Kind regards

maxgro
MVP
MVP

try with

Timestamp#([Estimated Start time (EST)],'hh:mm TT')

Not applicable
Author

Thank you so much.