How to filter for the data of a particular hour and a minute?

Suppose if you want to remove rows that have the timestamp “00:00” like following.

You can do it by defining 2 filters in a single filter step.

First, you can define a filter with hour == 0 condition.

Second, you can define a filter with minute == 0 condition.

Make sure the operator is “AND”. Then this filter will remove the rows that have “00:00” timestamp.

image