View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.misc
B. R.Ramachandran
 
Posts: n/a
Default Formula is counting cell if nothing is entered

Hi

Try one of the following modifications to your formula:

=IF(E12="","",ROUND(E12*24/0.25,0)*0.25/24)
=IF(ISBLANK(E12),"",ROUND(E12*24/0.25,0)*0.25/24)

Regards,
B. R. Ramachandran


"Jennifer" wrote:

I have made a timesheet that will automatically round up to the nearest
quarter hour, but if no time is entered the round column stays as 12:00 am
and calcualtes as such. The first col. has the actual time then the second
col. has the formula =round(E12*24/0.25,0)*0.25/24 which works to round the
time, but, as I said, if nothing is entered in the time, the round col. shows
12:00 am.