Value to be given to all cells with black background color

  • Thread starter Thread starter Norbert Jaeger
  • Start date Start date
N

Norbert Jaeger

Hello,

I have a certain range of cells in which some of the cells are
formatted to have a black background color.
None of the cells contain any data.

I want to select the whole range of cells and then run a macro which
puts a "1" into each black cell. The white cells must stay empty.

How can I do this?

Regards,
Norbert
 
Dim cell As Range
For Each cell In ActiveSheet.UsedRange
If cell.Interior.Color = 0 Then
cell.Value = 1
cell.Font.Color = RGB(&HFF, &HFF, &HFF)
End If
Next cell


--

HTH

RP
(remove nothere from the email address if mailing direct)
 
Dim ThisCell as Range
For Each ThisCell in Selection.Cells
If ThisCell.Interior.Color = vbBlack Then ThisCell.Value = 1
Next ThisCell
 
Back
Top