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

count of time field

Hi,

I have a time field (hh:mm:ss) in a field called update_time_JD_1.  What I am looking to do is create an expression that counts the data that is over 10 hours but I do not want it to count the data over 20 hours.

E.G.

00:00:05

00:10:05

05:10:09

10:10:10

13:16:19

20:02:30

This would show the count as 2, as I want it to show the 10:10:10 and 13:16:19, but not the 20:02:30 (even though its over 10 hours).

Regards,

Jon Ditchfield

1 Solution

Accepted Solutions
Not applicable
Author

try this :

=count(if(time(TIME,'hh,mm,ss') > time('10:00:00','hh,mm,ss') AND time(TIME,'hh,mm,ss') < time('20:00:00','hh,mm,ss'), TIME))

View solution in original post

2 Replies
Not applicable
Author

try this :

=count(if(time(TIME,'hh,mm,ss') > time('10:00:00','hh,mm,ss') AND time(TIME,'hh,mm,ss') < time('20:00:00','hh,mm,ss'), TIME))

er_mohit
Master II
Master II

Try this

Test:

LOAD * Inline [

Time

00:00:05

00:10:05

05:10:09

10:10:10

13:16:19

20:02:30

]Where time(Time,'hh:mm:ss')>'10:00:00' and time(Time,'hh:mm:ss')<'20:00:00' ;