![]() |
|
#2
|
|||
|
|||
|
Code:
Sub Maybe()
Dim c As Range
For Each c In Range("A1:D12") '<---- Change Range as required
With c
Select Case .Interior.Color
Case Is = vbRed
c.Value = -1
Case Is = vbGreen
c.Value = 1
Case Is = vbYellow
c.Value = 0
Case Else
End Select
End With
Next c
End Sub
|
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Help making invoices easier | wbowles | Office | 0 | 07-17-2013 10:39 AM |
Please help me with an easier solution!
|
Inquisitor | Word | 1 | 06-26-2011 01:01 AM |
| Easier highlighting? | atarei | Word | 0 | 08-27-2010 05:28 PM |
| Microsoft Word Easier Navigation Question | xxlegendxx | Word | 0 | 03-22-2009 07:44 PM |