View Single Post
  #5   Report Post  
Posted to microsoft.public.excel.programming
Roger Govier[_3_] Roger Govier[_3_] is offline
external usenet poster
 
Posts: 2,480
Default Date/Time Question - After 5:30 PM?

You're right Dave, I had thought the time was in a cell on its own.

--
Regards
Roger Govier

"Dave Peterson" wrote in message
...
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.

porter444 wrote:

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

ROCK ON!,

Scott

"porter444" wrote:

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


--

Dave Peterson