1 Basic Formulas
Calculate the total for cells B4, B5, and B6 in cell B8. AutoFill that total through cell M8. Then, in cell B9, calculate the sales tax through the rate in cell Q2. AutoFill those values through to cell M9.
- Click in cell B8
- Type: =B4+B5+B6
- Click the fill handle in cell B8 and drag it through cell M8
- Click in cell B9
- Type: =B8*$Q$2
- Click the fill handle in cell B9 and drag it through cell M9
2 Named Ranges In Formulas
In cell B9, multiply the contents of cell B8 and the named range, TaxRate. Then, AutoFill the formula to cell M9.
- Click in cell B9
- Type: =B8 * TaxRate
- Click the fill handle in cell B9 and drag it through cell M9
3 Basic Functions
Below each of the headings for Sum, Average, Min, and Max, add functions to get the sum, average, maximum, and minimum values for cells B6 through M6. Then, AutoFill the results down through all of the morning classes.
- Click in cell O6
- Type: =SUM(B6:M6)
- Click in cell P6
- Type: =AVERAGE(B6:M6)
- Click in cell Q6
- Type: =MIN(B6:M6)
- Click in cell R6
- Type: =MAX(B6:M6)
- Select cells O6 through R6
- Click the fill handle and drag down through row 20
4 Count Functions
In cell S6, use a function to display a count of the cells from B6 through M6 that contain a number. In cell T6, use a function to display a count of the cells from B6through M6 that contain nothing. AutoFill both cells down through all of the morning classes.
- Click in cell S6
- Type: =COUNT(B6:M6)
- Click in cell T6
- Type: =COUNTBLANK(B6:M6)
- Select cells S6 and T6
- Click the fill handle and drag down through row 20
5 If Functions
In cell Q2, insert a function that displays a YES if the total number of morning classes for January is at least 175 and a NO if not.
- Click in cell Q2
- Click the Formulas tab
- In the Function Library group, click the Logical drop-down arrow
- Click IF
- In the Logical_test field type: SUM(S6:S20)>=175
- Click in the Value_if_true field
- Type: YES
- Click in the Value_if_false field
- Type: NO
- Click the OK button