<div dir="ltr">If you're willing to write some code, you could create a callback that modifies the $COLUMN_MAP variable, which defines all of the different column types and how they are prepared.  You could then create a column called "DueDate" which outputs just the date of the due date/time.<div><br></div><div>Create $RTHOME/local/html/Callbacks/DueDate/Elements/RT__Ticket/ColumnMap/Once with this content:</div><div><br></div><div><%args></div><div><div>$COLUMN_MAP</div><div></%args></div><div><%init></div></div><div>$COLUMN_MAP->{'DueDate'} = {<br></div><div>    title     => 'Due', # loc</div><div>    attribute => 'Due',</div><div>    value     => sub {</div><div>        my $ticket = shift;</div><div>        my $date = $ticket->DueObj;</div><div>        return '' if not $date->IsSet;</div><div>        return $date->Date;</div><div>    }<br></div><div>};</div><div></%init><br></div><div><br></div><div>Then, clear your Mason cache and restart your RT server:</div><div><br></div><div><a href="http://requesttracker.wikia.com/wiki/CleanMasonCache">http://requesttracker.wikia.com/wiki/CleanMasonCache</a><br></div><div><br></div><div>You should now see a "DueDate" choice when building searches.  The code can be copied for other date/time values, or you could put a loop into the code above.</div></div><div class="gmail_extra"><br><div class="gmail_quote">On 5 December 2014 at 01:41, Gaston Huot <span dir="ltr"><<a href="mailto:Gaston@huot.me" target="_blank">Gaston@huot.me</a>></span> wrote:<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr">Is it possible to change the date format for some specific searches (eg. just the date without the time)? I don't want to change the general option (in user General preferences).<div><br></div><blockquote style="margin:0 0 0 40px;border:none;padding:0px"><div><div>'<b><a href="__WebPath__/Ticket/Display.html?id=__id__">__id__</a></b>/TITLE:#',</div></div><div><div>'<b><a href="__WebPath__/Ticket/Display.html?id=__id__">__Subject__</a></b>/TITLE:Subject',</div></div><div><div>Owner,</div></div><div><div><u>'<small>__LastUpdated__</small>/TITLE:MAJ'</u></div></div></blockquote><div><div><div><div dir="ltr"><br></div><div dir="ltr">Gaston<div>514.823-7202</div></div></div></div>
</div></div>
</blockquote></div></div>