View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
daddylonglegs daddylonglegs is offline
external usenet poster
 
Posts: 174
Default time calculation using IF function

Well, you could try

=IF(C11<="08:08"+0,"8:00"+0,"8:15"+0)

format as h:mm AM/PM

but what happens if c11 is 07:00 or 09:00? I know it won't give quite the
same result but what about

=ROUND(C11*96,0)/96

to round to the nearest quarter hour

"Polly" wrote:

I am trying to write a function that calculates a time card

I want to "say" that if you punch in between 8:00 am and 8:08 am, the time
will read 8:00 am, if it is 8:09 am, then the time will read 8:15 am.

I tried: c11<=08:08, 8:00 am, 8:15 am but it does not work.

Any thoughts?