This macro will do the OPTIONS1 for you. Just create the other versions for the other buttons and date range cells.
Option Explicit

Sub Button2_Click()
Dim LR       As Long
Dim savePath As String
Dim saveName As String

savePath = "C:\2010\"       'include the final \ in this string
saveName = "Options1 " & Format(Date, "MM-DD-YY")

With Sheets("Option1")
    .Rows("7:7").AutoFilter
    .Rows("7:7").AutoFilter Field:=3, Criteria1:=">" & Sheets("Report").[D3] & " 0:00", _
                     Operator:=xlAnd, Criteria2:="<" & Sheets("Report").[F3] & " 23:59"
    LR = .Range("C" & .Rows.Count).End(xlUp).Row
    If LR > 7 Then
        .Range("A7:D" & LR & ",H7:H" & LR & ",K7:K" & LR).Copy
        Workbooks.Add
        Range("A1").PasteSpecial xlPasteValuesAndNumberFormats
        Columns.AutoFit
        ActiveWorkbook.SaveAs Filename:=(savePath & saveName), FileFormat:=xlNormal
        ActiveWorkbook.Close
    End If
    .AutoFilterMode = False
End With

End Sub