<div><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;"><div bgcolor="#ffffff" text="#000000"><font color="black" face="Verdana,Arial,Helvetica" size="2">
<font color="black" face="Verdana,Arial,Helvetica" size="2"><font color="#660066">&gt; anytime on this day <br>
&gt; Any day starting between x hr and y hr (eg 8pm - 10pm) <br>
&gt; This covers shows which repeats on other days from an older series
<br>
</font> <br>
&gt;Like the Bill, perhaps? Is that what prompted your email because
I&#39;ve <br>
?noticed it recently and it is a minor annoyance?<br>
<br>
Yes and a few other shows more recently Mclouds are showing previous
series during the daytime slot<br>
</font></font></div></blockquote></div><br>Well, it&#39;s pretty easy to achieve this using a power search.&nbsp; Of course, if you lack SQL knowledge, that might be a little more tricky.&nbsp; But something like this will do:<br>
<br>Between 8 and 10pm:<br><br>program.title = &quot;Program Title&quot; and <br>hour(program.starttime) &gt;= 20 and <br>hour(program.starttime) &lt;= 22<br><br>On Tuesday:<br><br>program.title = &quot;Program Title&quot; and
<br>date_format(program.starttime, &quot;%W&quot;) = &quot;Tuesday&quot;<br><br>TBH, I find I use power searches quite often (in my case, I&#39;d call it a killer feature).&nbsp; In particular, I have a number of shows where I want to say &quot;record at any time on any channel *except* these channels ...&quot;, to give the scheduler maximum flexibility while avoiding re-runs (eg, CSI + Spike).&nbsp; Or, in the case of BSG, Space airs the original series and the new series, with identical show titles, forcing me to do a time-slot based schedule, which breaks if the show moves around.&nbsp; But a power search lets me search by seriesid, which solves that problem.
<br><br>Brett.<br>