-
Cells with values
I have this code to replace any blank cells in column C with the phrase "in composite"
[VBA]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[/VBA]
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"
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules