Using VBA I'm trying to perform a SELECT INTO following the documentation here: https://msdn.microsoft.com/en-us/library/bb208934(v=office.12).aspx
I'm attempting to select from a query and insert into a new table:
strSQL = "SELECT [BookingDate], [StartTime], [first_name], [last_name] INTO [NewTable] FROM myQuery"
CurrentDb.Execute strSQL, dbFailOnError
However it's throwing an error
Too Few Parameters : Expected 1
What am I doing wrong?