Sorry u need to learn how to code..
create a New Module in the database.. .
paste code below... then call from macro or button.
htwh..
Public Function RunMyQuery()
Dim lcQueryStr As String
Dim lcYear As String
Dim lcDay As String
Dim lcMonth As String
Dim ThisDB As DAO.Database
Dim lcTableName As String
Dim lc_Table As DAO.TableDef
Set ThisDB = CurrentDb
lcYear = Format(Year(Date), "yyyy"

lcDay = Format(Day(Date), "00"

lcMonth = Format(Month(Date), "00"

lcTableName = "Dog" & lcYear & lcMonth & lcDay
lcQueryStr = "SELECT Table1.ID, Table1.Field1, Table1.Field2 "
lcQueryStr = lcQueryStr & "INTO " & lcTableName & " "
lcQueryStr = lcQueryStr & "FROM Table1;"
'Does Table Exist Alraedy - If So Delete
For Each lc_Table In ThisDB.TableDefs
If Trim(lc_Table.Name) = Trim(lcTableName) Then
' Delete Existing Query!
ThisDB.TableDefs.Delete (lcTableName)
ThisDB.TableDefs.Refresh
End If
Next lc_Table
ThisDB.Execute lcQueryStr, dbFailOnError
MsgBox ("Done"

End Function
Steve Medvid
"IT Consultant & Web Master"
e-Mail: Stephen_Medvid@GMACM.com
Chester County, PA Residents
Please Show Your Support...