on the Standard toolbar, and then click Average and press ENTER.To do this task, use the AVERAGE function as shown in the examples below :
![]() Example 1
| ![]() Example 2
| ![]() Example 3 |
To do this task, use the SUMPRODUCT and SUM functions as shown in the examplein the image :

The function SUMPRODUCT multiplies all the components of the two arrays and then adds the products> The SUMPRODUCT in above example is 5*80 + 40*20 + 30*2 + 5*300 = 2760.
on the Formatting toolbar.To do this task, use the ROUNDUP, EVEN, or ODD functions as shown in the examples below:
If the number entered in cell A2 is 20.346
| Formulas | Description |
|---|---|
| =ROUNDUP(A2,0) | This formula rounds 20.346 up to the nearest whole number (21) |
| =ROUNDUP(A2,1) | This formula rounds 20.346 up to the nearest whole number (20.4) |
| =ROUNDUP(A2,2) | This formula rounds 20.346 up to the nearest hundredth, two decimal places (20.35) |
| =EVEN(A2) | This formula rounds 20.346 up to the nearest even number (22) |
| =ODD(A2) | This formula rounds 20.3 up to the nearest odd number (21) |
To do this task, use the ROUNDDOWN function as shown in the examples below:
If the number entered in cell A2 is 20.346
| Formulas | Description |
|---|---|
| =ROUNDDOWN(A2,0) | This formula rounds 20.346 up to the nearest whole number (20) |
| =ROUNDDOWN(A2,1) | This formula rounds 20.346 up to the nearest whole number (20.3) |
| =ROUNDDOWN(A2,2) | This formula rounds 20.346 up to the nearest hundredth, two decimal places (20.34) |
on the Standard toolbar , and then click Count and press ENTER.To do this task, use the COUNT function. The formula
=COUNT(A2:A10,A12)
Counts number of cells in range A2:A10 and Cell A12 that contain numbers. Please note that if text is entered in any cell, it will not be counted. However,a date is a number and it will be counted.
, and then click Min (calculates the smallest), or Max (calculates the largest), and then press ENTER.To do this task, use the MIN, MAX, SMALL, or LARGE functions. Please look at the use of formulas in the examples given below:
| Formula | Description (Result) |
|---|---|
| =MIN(A2:A17) | This formula will find Smallest number in the range A2:A17. |
| =MAX(A2:A17) | This formula will find Largest number in the range A2:A17. |
| =SMALL(A2:A17, 2) | This formula will find Second smallest number in the range A2:A17. |
| =LARGE(A2:A17,3) | This formula will find Third largest number in the range A2:A17. |