Question
--- VBA PROGRAM --- Before.. After... Sub ScoreDataProblem() '1. Use the score data in worksheetProblem (wsData) '2. Define a range variable (anchorCell) and assign it
--- VBA PROGRAM ---
Before..
After...
Sub ScoreDataProblem()
'1. Use the score data in worksheet"Problem" (wsData)
'2. Define a range variable (anchorCell) and assign it Cell A1
'3. Using the offset property of the anchorCell, use a message box to display the value in cell D5
'4. Using the cells property of the anchorCell, use a message box to display the value in cell C3
'5. Using range, anchorCell, the end property, select the range for the cells with the ID and SSN (Hint: Use xlDown two times to get to the top of the ' desired range and three times to get to the bottom of the desired range.)
'6. Using range, anchorCell, the end property and the currentRegion property to select the range for the cells with the ID and SSN
'7. Using the anchorCell, offset with the end property and the FormulaR1C1 properties place a formula under the column H that calculates the average over scores 1 to 5 for all rows 2 to 9.
'8. Using the copy and paste methods and using the anchorCell and offset to ' reference a cell, copy the SSN from the range B13:B21 to column I1.
'9. Sort cells in range A2:I9 according to a) descending SSN, b) ascending ' Score1 (note: step through the code to see the effect because once b) is ' executed, then the sorting by a) is no longer valid.)
'10. Using the anchorCell and the offset property, redefine a new range with 4 rows and 4 columns with the upper left-hand corner being cell C4 (Hing: use the property Resize(#Rows, #Cols). Then highlight the following: ' a. the 3-rd row from the top of the range of the data in yellow
' b. the fifth column from the left of the range of the data in red
' c. the Complete 7-th row from the top of the data in magenta
' d. the complete 6-th column from the left of the data in green
wsData.Cells.ClearFormats
End Sub
ID Score1 1 6 Score2 Score3 Score4 Score5 65 69 97 85 60 94 62 67 61 65 67 67 72 94 76 96 62 87 97 76 84 91 79 79 82 100 62 80 96 100 76 72 4 3 5 100 69 97 SSN 1815-65-3607 2768-30-8255 3 818-12-9031 4 790-77-1029 5958-92-8572 6730-64-7576 7 903-60-2172 8 853-29-3603 ID |Score! Stuff Score4 76 ID Score2 61 65 67 67 72 94 Score3 65 69 97 85 60 94 Score5 SSN 62 67 91 355 815-65-3607 346 768-30-8255 438 818-12-9031 376 790-77-1029 415 958-92-8572 447 730-64-7576 394 903-60-2172 422 853-29-3603 6 2 8 96 62 87 97 76 84 79 82 100 62 80 96 100 76 72 4 5 100 69 97 ID SSN 1 815-65-3607 2 768-30-8255 3 818-12-9031 4 790-77-1029 5 958-92-8572 6 730-64-7576 7 903-60-2172 8 853-29-3603Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started