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

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

show only 3pm data

I have timestamp column and I want to pick only 3 pm data from rest of data

3 Replies
oknotsen
Master III
Master III

Define "3pm".

  • Do you mean that exact millisecond?
  • Do you mean "the time between 15h00 and 15h59:59"?
  • Do you mean "the time between 14h58 and 15h02"
  • ...

There are various ways of doing this, but it all depends on what you exactly have in mind.

May you live in interesting times!
Anonymous
Not applicable
Author

I have to show in column only 3.45pm,3.50pm like that

sunny_talwar
MVP
MVP

Do you want to exclude the other times in the script? May be this

LOAD ....

FROM...

WHERE Hour(TimeStamp) = 15;

On the front end, you can try this

{<TimeStamp = {"=Hour(TimeStamp) = 15"}>}