Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
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],