Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Display Data For A Specific Time Of Day

Status
Not open for further replies.

qcman

Technical User
Jul 20, 2004
30
0
0
US
I have a month of data for three times a day (2am 8am and 10am). I want to display the 8am data only. What can I do?
 
It would help if you provided a little more information initially. If you have a datetime field, then you could use a record selection formula like this:

{table.datetime} >= date(2008,6,1) and
{table.datetime} < date(2008,7,1) and
time({table.datetime}) = time(8,0,0)

-LB
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top