PDA

View Full Version : Cells with values



Klartigue
11-29-2011, 01:38 PM
I have this code to replace any blank cells in column C with the phrase "in composite"
Sub ZerosAndBlanks()
' Fill zero and blank cells
Dim cll As Range, rng As Range
Set rng = Range("C1:C" & Cells(Rows.Count, "C").End(xlUp).Row)
For Each cll In rng
If cll.Value = "" Then cll.Value = "In composite"
Next cll

End Sub

I would also like to have a code to replace any cell in column C that DOES have something in it with the phrase "out of composite"

What do I need to put for ??? to trigger all cells that contain something?
If cll.Value = ???? Then cll.Value = "out of composite"

mdmackillop
11-29-2011, 02:07 PM
Sub ZerosAndBlanks()
' Fill zero and blank cells
Dim cll As Range, rng As Range, rngB As Range
Set rng = Range(Cells(1, 3), Cells(Rows.Count, 3).End(xlUp))
Set rngB = rng.SpecialCells(xlCellTypeBlanks)
rng.Value = "out of composite"
rngB.Value = "in composite"

End Sub

Klartigue
11-29-2011, 02:11 PM
It says there is an error with this line, error saying no cells were found

Set rngB = rng.SpecialCells(xlCellTypeBlanks)

mdmackillop
11-29-2011, 02:27 PM
There must be no blank cells. Can you post sample data?

Klartigue
11-29-2011, 03:23 PM
thanks for the help, this works great!