In case you want to copy a particular formatted cell or colored cells from one column to the next column then this article is for you. In this article, we will learn how to copy colored cells using VBA code.
Following is the snapshot of the data we have i.e. column A contains data with few yellow colored cells.
To extract the data that is highlighted in yellow color only; we need to create a UDF to show the colored cells only in column B
Function IsYellow(ByRef r As Range)
If r.Interior.ColorIndex = 6 Then
IsYellow = r.Value
Else
IsYellow = vbNullString
End If
End Function
The above code is specifically matching the color# 6 which is meant for Yellow color only. Hence, the udf will extract only the values that contain color#6.
In case we want to extract red color cells then we need to check the designated color number & simply replace with yellow color number.
In this way, we can retrieve the yellow font color cells using vba code.
The applications/code on this site are distributed as is and without warranties or liability. In no event shall the owner of the copyrights, or the authors of the applications/code be liable for any loss of profit, any problems or any damage resulting from the use or evaluation of the applications/code.