Sub
ZeileFaerbenWennWortInZelleFastFertig2()
x = ActiveSheet.UsedRange.Rows.Count
Dim
Zelle
As
Range
For
i = 1
To
x
Rows(i).
Select
If
Cells(i, 1).Value
Like
"*Regeneration*"
Then
Cells(i, 1).EntireRow.Interior.ColorIndex = 4
Cells(i, 1).Interior.ColorIndex = 4
Cells(i, 2).Interior.ColorIndex = 4
Cells(i, 3).Interior.ColorIndex = 4
For
Each
Zelle
In
ActiveSheet.UsedRange
If
Zelle.MergeCells
Then
Zelle.EntireRow.Interior.ColorIndex = 4
Next
Zelle
Next
End
Sub