Sub Quicky()
If Worksheets("Daily").Range("B13").Value = 4 Then
Range("B13:H13").Merge
Range("B13") = "Due " & Range("B13").Value & " times"
End If
End Sub
This code works just fine, but if I change Range("B13") in the first line to Range("B11:B13") I get a type mismatch error. I don't know why. Any suggestions?