Or use VBA in previous versions of Excel (in 2003 or earlier)
For example, the following code line only copies the value of cell A1 to cell B1 if the color of the value in cell A1 is red.
Code:
If Range("A1").Font.Color = vbRed Then Range("B1").Value = Range("A1").Value
Hope this helps..