I have a calculation for Total Hours that takes the DURATION (set to days) multiplied by UTILIZATION percent, then translates to hours by multiplying by 8 hrs. I want the result to always be a whole number:
"round up" to the next whole number if the decimal is greater .25, otherwise round down.
Currently, the formula in the cell is:
=Duration@row * Utilization@row * 8
Examples:
13 days x 6% x 8 hrs = 6.24. I want this number to round down to 6.00 instead of 6.24
3 days x 20% x 8 hrs = 4.80. I want this number to round up to 5.00 instead of 4.80
I can see the ROUND function, but do not see a ROUNDUP function.
Any recommendations?