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

Announcements
Join us to spark ideas for how to put the latest capabilities into action. Register here!
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Break times into specific intervals (15 mins)

I have a data set with the following columns

* StatusStartTime

* UserID

* StatusName

I want to be able to break the StatusStartTime which can be anytime up to the second into 15 mins interval and do a count on Status Name.

For e.g I want to know in a specific 15 min interval how many agents were on the "Available" status.

Any help/suggestion on how I can go about doing that would be much appreciated.

Thanks,
Amit

1 Solution

Accepted Solutions
Clever_Anjos
Employee
Employee

At load script create a field with

LOAD [otherfields]

StatusStartTime,

Floor(StatusStartTime,1/(24*4)) as StatusStartTimeGap

View solution in original post

2 Replies
Clever_Anjos
Employee
Employee

At load script create a field with

LOAD [otherfields]

StatusStartTime,

Floor(StatusStartTime,1/(24*4)) as StatusStartTimeGap

Not applicable
Author

Thank you!