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

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

Timestamp affecting the daily view

i have converted a string to a timestamp  in the load script labelled Load Data, ie.

Timestamp(Timestamp#([start],'MMM DD YYYY hh:mmTT')) AS [Time Start],

but now it does not return values in the sheet Daily Summary in several columns for vYesterday of which it did before. This is in the load script labelled Main.

Eg. Source Start column

=Min({1<Date = {'$(=Date(vYesterday))'},System={'Source'}>}

Time(Time#(Trim(Right([Time Start],8)),'hh:mmTT'),'hh:mm') )

10 Replies
Anonymous
Not applicable
Author

Fixed it. Issue was with spaces thus was instructed to use [ ].

If( IterNo() = 1 , Timestamp#([Source Start],'MMM [ ]D [ ]YYYY [ ]hh:mmTT'), Timestamp#([MaRRs Start],'MMM [ ]D [ ]YYYY [ ]hh:mmTT')) AS [Time Start],