I made a mistake on the sheet you were using for comparison..... I forgot to delete columns c,d & e on the previous rows with the "jumbo". Hopefully, it's just a matter of adjusting a couple numbers in the code like you had me do previously. I gotta be getting on your nerves by now...I'm terribly sorry.
Update
I changed this:
If CheckCell.Text = "Jumbo" Then
lOffset = 3 - (Len(Trim(CheckCell.Offset(-1, 3).Text)) > 0)
Select Case (rngDel Is Nothing)
Case True: Set rngDel = CheckCell.Offset(, -1).Resize(, 2)
Case Else: Set rngDel = Union(rngDel, CheckCell.Offset(, -1).Resize(, 2))
End Select
Set rngDel = Union(rngDel, CheckCell.Offset(-1, lOffset).Resize(, 15 - (lOffset = 3)))
End If
To this:
If CheckCell.Text = "Jumbo" Then
lOffset = 0 - (Len(Trim(CheckCell.Offset(-1, 0).Text)) > 0)
Select Case (rngDel Is Nothing)
Case True: Set rngDel = CheckCell.Offset(, -1).Resize(, 2)
Case Else: Set rngDel = Union(rngDel, CheckCell.Offset(, -1).Resize(, 2))
End Select
Set rngDel = Union(rngDel, CheckCell.Offset(-1, lOffset).Resize(, 15 - (lOffset = 0)))
End If
This seems to have done the trick. If you can confirm this is what I should have done, I will mark this thread as solved. I just want to verify that I didnt change too much. Thanks again!
Bookmarks