Advertisement
Advertisement
| 01.12.2008 at 10:16PM PST, ID: 23078756 |
|
[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! |
||
| Microsoft |
| Apple |
| Internet |
| Gamers |
| Digital Living |
| Virus & Spyware |
| Hardware |
| Software |
| ITPro |
| Developer |
| Storage |
| OS |
| Database |
| Security |
| Programming |
| Web Development |
| Networking |
| Other |
| Community Support |
| 01.12.2008 at 10:31PM PST, ID: 20646660 |
| 01.12.2008 at 11:28PM PST, ID: 20646797 |
| 01.13.2008 at 12:25AM PST, ID: 20646967 |
| 01.13.2008 at 09:06AM PST, ID: 20648228 |
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: |
Sub RowColoring()
'Applies different highlights to rows according to value in specified column
Dim cel As Range, rg As Range
Application.ScreenUpdating = False
Set rg = [N2] 'First cell in column that needs to be checked
Set rg = Range(rg, Cells(Rows.Count, rg.Column).End(xlUp))
For Each cel In rg.Cells
Select Case UCase(cel.Value)
Case "L"
cel.EntireRow.Interior.ColorIndex = 3 'red
Case "D"
cel.EntireRow.Interior.ColorIndex = 5 'blue
Case "A"
cel.EntireRow.Interior.ColorIndex = 4 'green
Case "B"
cel.EntireRow.Interior.ColorIndex = 6 'yellow
Case "C"
cel.EntireRow.Interior.ColorIndex = 44 'gold
End Select
Next
Application.ScreenUpdating = True
End Sub
|
| 01.13.2008 at 05:25PM PST, ID: 20650132 |
| 01.18.2008 at 10:28PM PST, ID: 20696410 |
| 01.18.2008 at 11:00PM PST, ID: 20696457 |
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: |
Sub RowColoring()
'Applies different highlights to rows according to value in specified column
Dim cel As Range, rg As Range, rgColor As Range
Dim iColor As Long
Application.ScreenUpdating = False
Set rg = [N2] 'First cell in column that needs to be checked
Set rgColor = [A:M] 'Apply highlight to these columns
Set rg = Range(rg, Cells(Rows.Count, rg.Column).End(xlUp))
For Each cel In rg.Cells
Select Case UCase(cel.Value)
Case "L"
iColor = 3 'red
Case "D"
iColor = 5 'blue
Case "A"
iColor = 4 'green
Case "B"
iColor = 6 'yellow
Case "C"
iColor = 44 'gold
End Select
Next
Intersect(cel.EntireRow, rgColor).Interior.ColorIndex = iColor
Application.ScreenUpdating = True
End Sub
|