VBAProIWish
Well-known Member
- Joined
- Jul 6, 2009
- Messages
- 1,027
- Office Version
- 365
- Platform
- Windows
Hello All,
Can I change the code in red and bold below to say this instead? (going to use laymen's terms)...
I really hope this can be done, it'll be a whole lot of work if I can't.
Thanks to anyone that can help me one this one
Can I change the code in red and bold below to say this instead? (going to use laymen's terms)...
Code:
If Cells(i,19) "day after" OR "=" enddate Then
Quotes were used only for illustration purposes
Code:
Sub aaa_test_macro_01()
Dim enddate As Date
Dim i As Long
enddate = Format(Sheets("Date Shipped").Range("z3"), "mm/dd/yy")
[B][SIZE=4][COLOR=red] If Cells(i, 19) >= enddate Then[/COLOR][/SIZE][/B]
Cells(i, 3).EntireRow.Delete
End If
Next i
End Sub
I really hope this can be done, it'll be a whole lot of work if I can't.
Thanks to anyone that can help me one this one