cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
The Discovery Summit 2025 Call for Content is open! Submit an abstract today to present at our premier analytics conference.
See how to use to use Text Explorer to glean valuable information from text data at April 25 webinar.
Choose Language Hide Translation Bar
View Original Published Thread

Exclude Time Data

texas_stats
Level II

Hello,

 

I have a column that is in Date-Time format.  I would like to exclude rows where the time includes 04:00:00, but my script isn't working.  Any help is appreciated.

texas_stats_1-1717433396828.png

 

Script in the Exclude column:

If( Contains( Format(:DT, "hh:mm:ss"), "04:00:00"),
	1,
	0
)

 

1 ACCEPTED SOLUTION

Accepted Solutions
jthi
Super User


Re: Exclude Time Data

You can check for the time of day

If(Time Of Day(:DT) == In Hours(4),
	1
,
	0
);

Few examples

Show(
	Time Of Day(03Jun2024:04:00:00) == In Hours(4), // 1
	Time Of Day(03Jun2024:04:10:00) == In Hours(4), // 0
	Time Of Day(03Jun2024:05:00:00) == In Hours(4) // 0
);
-Jarmo

View solution in original post

3 REPLIES 3
jthi
Super User


Re: Exclude Time Data

You can check for the time of day

If(Time Of Day(:DT) == In Hours(4),
	1
,
	0
);

Few examples

Show(
	Time Of Day(03Jun2024:04:00:00) == In Hours(4), // 1
	Time Of Day(03Jun2024:04:10:00) == In Hours(4), // 0
	Time Of Day(03Jun2024:05:00:00) == In Hours(4) // 0
);
-Jarmo
texas_stats
Level II


Re: Exclude Time Data

Awesome!  Thanks for the quick response.

CalebRogers
Level I


Re: Exclude Time Data

Thanks for answering, you made my day.