Date/Time Question - After 5:30 PM?

P

porter444

I am trying to determine if orders are being sent to my fulfilment center
after the designated cut-off time of 5:30 PM.

I have a date/time field that contains the date and time the order was
transmitted.

Ex: 3/9/09 5:39 PM

I'd like to have a worksheet function that lets me know TRUE or FALSE if the
time of order transmit if before 5:30 PM on any given day.

Thanks in advance for your help.

Sincerely,

Scott
 
P

porter444

Doesn't seem to be working.
--
If my posting was helpful, please click the "Yes" button.

ROCK ON!,

Scott
 
D

Dave Peterson

Roger either didn't notice the date or didn't think it was part of the same
cell:

=A1<=TIME(17,30,0)
becomes
=mod(a1,1)<=TIME(17,30,0)

=mod(a1,1)
will return just the time in that cell.

=int(a1)
will return just the date.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top