Round up an average

K

Kirstin

I'm trying to do something pretty simple (I thought). I would like to
average a column and then round up the results. I'm doing the formula:

=roundup(AVERAGE(A1:A5))

And receiving an error message that it has too few arguments. How do I
round up an average?
 
T

T. Valko

=roundup(AVERAGE(A1:A5))

You have to tell it how many digits to round to For example, to roundup to
the nearest whole number:

=ROUNDUP(AVERAGE(A1:A5),0)
 
K

Kirstin

Perfect. Thank you :)

T. Valko said:
You have to tell it how many digits to round to For example, to roundup to
the nearest whole number:

=ROUNDUP(AVERAGE(A1:A5),0)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

Average rounded to nearest 0.50 4
Average for 31 arguments 6
running average 2
Date Round Up 4
average 1
If average 3
'auto find average of 4 fastest times' 3
Average with multiple conditions 4

Top