Hello all
I am trying to filter out all dates that are greater than today with VBA with my code below but it is bugging out on & Today()
Any idea's please
[Sub LateSupplier()
If ActiveSheet.FilterMode Then
ActiveSheet.ShowAllData
End If
ActiveSheet.Range("$A$1:$AA$5000").AutoFilter Field:=15, Criteria1:=" > " & Today()
End Sub]
I am trying to filter out all dates that are greater than today with VBA with my code below but it is bugging out on & Today()
Any idea's please
[Sub LateSupplier()
If ActiveSheet.FilterMode Then
ActiveSheet.ShowAllData
End If
ActiveSheet.Range("$A$1:$AA$5000").AutoFilter Field:=15, Criteria1:=" > " & Today()
End Sub]