Excel Basic Functions
Excel Basic Functions
### 1. `SUM`
- Example: `=SUM(A1:A10)` will add all the numbers in the range A1 to A10.
### 2. `AVERAGE`
- Example: `=AVERAGE(B1:B10)` will calculate the average of the numbers in the range B1 to B10.
### 3. `MIN`
- Example: `=MIN(C1:C10)` will find the smallest number in the range C1 to C10.
### 4. `MAX`
- Example: `=MAX(D1:D10)` will find the largest number in the range D1 to D10.
### 5. `COUNT`
Description: Counts the number of cells that contain numbers within a specified range.
- Example: `=COUNT(E1:E10)` will count the number of cells that contain numbers in the range E1 to
E10.
### 6. `COUNTA`
Description: Counts the number of cells that are not empty in a specified range.
### 7. `COUNTBLANK`
- Syntax: `COUNTBLANK(range)`
- Example: `=COUNTBLANK(G1:G10)` will count the number of empty cells in the range G1 to G10.
### 8. `SMALL`
- Example: `=SMALL(H1:H10, 2)` will return the second smallest value in the range H1 to H10.
### 9. `LARGE`
- Example: `=LARGE(I1:I10, 3)` will return the third largest value in the range I1 to I10.
These functions are fundamental for data analysis and manipulation in Excel, providing a range of
capabilities from basic arithmetic to more complex data filtering.