Returns the average (mean) of the provided numbers
Syntax
AVG(number1, [number2, ...])
- number1—The number, cell reference, or range for which you want the average.
- number2, ... —[optional]Additional numbers, cell references, or ranges for which you want the average.
Sample usage
AVG(Cost1:Cost5)
Examples
This example references the following sheet information:
Item Number | Transaction Total | Units Sold | Price Per Unit | |
---|---|---|---|---|
1 | Item Number C001 | Transaction Total 1,170.00 | Units Sold 78 | Price Per Unit 15.00 |
2 | Item Number C002 | Transaction Total 1,491.00 | Units Sold 42 | Price Per Unit 35.50 |
3 | Item Number C003 | Transaction Total 812.00 | Units Sold 217 | Price Per Unit 200.00 |
Given the table above, here are some examples of using AVG in a sheet:
Formula | Description | Result |
---|---|---|
Formula =AVG([Transaction Total]:[Transaction Total]) | Description Averages the “Transaction Total” column. | Result 1,157.67 |
Formula =ROUND(AVG([Units Sold]:[Units Sold])) | Description Rounds the average of the “Units Sold” column. | Result 112 |
Formula =AVG(COLLECT([Units Sold]:[Units Sold], [Price Per Unit]:[Price Per Unit], <100)) | Description Averages values in the “Units Sold” column when their corresponding value in the "Price Per Unit" column is less than 100. | Result 60 |
Still need help?
Use the Formula Handbook template to find more support resources, and view 100+ formulas, including a glossary of every function that you can practice working with in real time, and examples of commonly used and advanced formulas.
Find examples of how other Smartsheet customers use this function or ask about your specific use case in the Smartsheet online Community.