S
Skip
I want to get an average of a column of numbers, and then round it
off.,
Can I put two functions in a single cell?
off.,
Can I put two functions in a single cell?
....You can do what you are asking. Here are 2 approaches:
With values in A1:A10
Calculate the average and round the result:
A11: =ROUND(AVERAGE(A1:A10),2)
OK.
Round each number before calculating the average (using an array formula*):
A11: =AVERAGE(ROUND(A1:A10,2))