"Insert Into" problem

foxhound

Board Regular
Joined
Mar 21, 2003
Messages
182
Does anyone know why the "Insert Into" part of this code is not working?

Sub AddHoliday_YTD_Table()
Dim strSQL As String

strSQL = "INSERT INTO NumberOfIncidents_YTD [EMPNO],[EMPNAME],[DBA],[DATE],[NUMHRS]" & _
"SELECT [EMPNO],[EMPNAME],[DBA],[NUMHRS],[DATE]" & _
"FROM [HOURS HISTORY]where [DATE] = #02/17/03# ;"

DoCmd.SetWarnings False
DoCmd.RunSQL strSQL
DoCmd.SetWarnings True
End Sub
 

Excel Facts

How to create a cell-sized chart?
Tiny charts, called Sparklines, were added to Excel 2010. Look for Sparklines on the Insert tab.
Probably because you have to declare in your code that you're using DAO (97 and earlier) or ADO (2000 or later) to access your tables. Search the Archive posts on how to do this, it only takes a couple of steps.
 
Upvote 0

Forum statistics

Threads
1,221,522
Messages
6,160,308
Members
451,637
Latest member
hvp2262

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top