Skip to main content
Announcements
NEW: Seamless Public Data Sharing with Qlik's New Anonymous Access Capability: TELL ME MORE!
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

LOAD: Where timestamp >=8:00<=16:00

Hi,

trying to load only the relevant data, which means transactions only made between 08:00 and 16:00.

However do not understand how to use the WHERE statement on timestamps.

Any ideas?

Example data and QV-file attached

Regards,

Olle

1 Solution

Accepted Solutions
Anonymous
Not applicable
Author

Hello,

Directory;

LOAD Amount,

     [Settlement timestamp],

     hour([Settlement timestamp]) as hour

FROM

[filter time example.xls]

(biff, embedded labels, table is [Report 1$])

where hour([Settlement timestamp])>=8 and hour([Settlement timestamp])<16

;

BR

Serhan

View solution in original post

2 Replies
Anonymous
Not applicable
Author

Hello,

Directory;

LOAD Amount,

     [Settlement timestamp],

     hour([Settlement timestamp]) as hour

FROM

[filter time example.xls]

(biff, embedded labels, table is [Report 1$])

where hour([Settlement timestamp])>=8 and hour([Settlement timestamp])<16

;

BR

Serhan

Anonymous
Not applicable
Author

Hola,

PFA

HTH