One way:

If your times are in XL time format (e.g., 10:00), then


=CEILING(D30*3,0.25)

(The 3 comes from 8 hours being 1/3 of a day, so hours need to be
multiplied by 3).

If instead your times are entered as number of hours (e.g., 10.0, 10.5),
then

=CEILING(A1/8,0.25)




In article <toastnbutter.1sm22a_1122102321.2141@excelforum-nospam.com>,
toastnbutter
<toastnbutter.1sm22a_1122102321.2141@excelforum-nospam.com> wrote:

> I am trying to find the best formula to demonstrate the length of time
> it takes to perform tasks and then round them to quarter day
> increments. For example, a task takes 10 hours to perform I need a
> formula that will take the 10 hours and display 1.25 (assuming an 8
> hour work day).
>
> By the same token though if it is 10.5 hours it should roundup to 1.5
> and not display 1.3.
>
> Any help would be greatly appreciated.