Advertisement
Advertisement
| 08.23.2008 at 06:38PM PDT, ID: 23673150 |
|
[x]
Attachment Details
|
||
|
[x]
The Solution Rating System
|
||
With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.
Your Input Matters If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support. Thank you! |
||
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: 31: 32: 33: 34: 35: 36: 37: 38: 39: 40: 41: 42: 43: 44: 45: |
Sub RoleMetricTotals()
Dim i, j, k, StopRow, Looper As Integer
Dim Sum1, Sum2, Sum3, Sum4, Sum5, Sum6, Sum7 As Double
Range("A1").Select
Selection.End(xlDown).Select
StopRow = ActiveCell.Row
Looper = (StopRow - 1) / 13
i = 1
Do Until i = 15
ActiveCell.Offset(i, 0).Value = "Total"
i = i + 1
Loop
i = 1
Range("B2:B15").Select
Selection.Copy
Range("A" & StopRow).Select
ActiveCell.Offset(1, 1).Select
ActiveSheet.Paste
Do Until j = 15
' summarize data for row
Sum1 = 0
Sum2 = 0
Sum3 = 0
Sum4 = 0
Sum5 = 0
Sum6 = 0
Sum7 = 0
Range("A1").Select
k = 3
Do Until k = 11
Do Until i = Looper
Sum1 = Sum1+ActiveCell.Offset(j,k
i = i + 1
Loop
' load summarized data in cells
k = k + 1
Loop
j = j + 1
Loop
End Sub
|