Am using a command button and autofilter to only see things with todays date.

VB Code:
  1. Sub TodaysFault()
  2.     Sheets("Database").Select
  3.     Selection.AutoFilter Field:=3, Criteria1:=Format(Now, "mm/dd/yyyy"), Operator:=xlAnd
  4. End Sub

I've had a browse around the forums and found the
VB Code:
  1. Criteria1:=Format(Now, "mm/dd/yyyy")
part. Got a feeling this is where I'm going wrong. Basically the Criteria1:= needs to be todays date and then once the macro has run autofilter only shows todays date of parts that I have in my sheet.