Sub MergeCells()
Application.ScreenUpdating = False
Dim rng As Range
For Each rng In Range("B18:B61")
If rng = "70" Then
Range("J" & rng.Row & ":L" & rng.Row).Merge
End If
Next rng
Application.ScreenUpdating = True
End Sub
I'm fuzzy on what is meant by merging the range? What happens to all the values in that range? Are they globbed together or is the first entered, etc....?