Trying to filter worksheet on date less than 6/5/2018 using the below code. Perplexed....
Thank you for any help.
Sub DateLessThan()Dim Lastrow As Long, i As Long
Dim ws As Worksheet
Set ws = ActiveSheet
Dim sdate As String
sdate = 6 / 5 / 2018
Lastrow = Range("A" & Rows.Count).End(xlUp).Row...