Sub HW4_1_1()
'a. Using the properties window in the VB editor assign
' the code name wsEx2 to the sheet with tab name Sheet1.
'b. Using VBA code and the code name for worksheet Sheet1,
' make this worksheet the active sheet.
'c. Declare a range variable and assign to this variable
' the range from A2 to A10 in the worksheet Sheet1.
'd. Write VBA code to create a range name and call it“Scores”.
' This range name should refer to the range B6to B14 in
' the worksheet labeled Sheet2
'e. Write VBA code that uses an Excel worksheet function
' that calculates the weighted average score (i.e.,
' the dot product of the range defined in part c. and the range inpart d.
' and place the calculated value in cell A12 of the Sheet1worksheet.
'f. Using VBA code change the background color of cell A12 togreen.
'g. Using VBA code change the font type in cell A12 to italic andbold.
'h. Using VBA code change the format property of cell A12 sothat
' it is displayed as a number with exactly three digits to theright
' of the decimal point and at least three digits to the left of thedecimal point.
End Sub