Exercise I - Basics


 

Name

Age

Weight (lbs)

Height (in)

Weight (kg)

Height (meters)

BMI (kg/m2)

Joe

45

272

72

 

 

 

Jane

37

165

65

 

 

 

Sarah

55

223

64

 

 

 

Tom

61

201

62

 

 

 

Ayesha

48

193

68

 

 

 

Sally

41

289

63

 

 

 

Dorothy

29

213

70

 

 

 

James

38

188

66

 

 

 

 

The worksheets at the bottom of your screen have titles. The default names are "Sheet 1", "Sheet 2," etc. You can change the names by double-clicking on the worksheet title to select it, and then typing in a new name.

  1. Use the scroll bar at the right side of the window to scroll down. Note that the column titles disappear.
  2. In Excel 2010 you can freeze the column titles at the top, so they are always visible. First place your cursor in cell A2 to indicate that you want the cells in the first row to freeze. Then click on "View", then select "Freeze Panes". Note that when you do this the line between rows 1 & 2 becomes a little bit darker.
  3. Now scroll down and up again, noting that you can see the column titles at all times.

=D2*2.54/100

This should give a result of 1.8288 meters.

=E2/(F2^2)

You should get a BMI of 36.89. Note also that the cell is already formatted to two decimal places.

Note also that the parentheses around (F2^2) are critical, since they indicate that the value of F2 (meters) should first be squared (i.e., raised to the second power), and the result should then be divided into E2.

In cells A11 through A15 enter the following labels: Count, Sum, Average, Std. Deviation, Median.

In cell B11 enter the function "=COUNT(B2:B9)".

In cell B12 enter the function "=SUM(B2:B9)"

In cell B13 enter "=AVERAGE(B2:B9)".

In cell B14 enter "=STDEV.S(B2:B9)".

In cell B15 enter "=MEDIAN(B2:B9)".

Now replicate these functions to the right in order to apply them to columns C through G.

 

Now select rows 12-15 and format them to one decimal place.