Help!I run this VBA code and it says that i have a syntax error and that i am missing an operand. ANy ideas?
SQL = ("UPDATE [Product]" & _
" SET [Product Name] = Forms![-- DM: Product].[Product Name]" & _
"[Product Type] = Forms![-- DM: Product].[ProductTypeCombo]" & _
"[Program Type] = Forms![-- DM: Product].[ProgramTypeCombo]" & _
"[Basic Price] = Forms![-- DM: Product].[Basic]" & _
"[Team Price] =Forms![-- DM: Product].[Team]" & _
"[Early Bird Price] = Forms![-- DM: Product].[Early Bird]" & _
"[Other Price] = Forms![-- DM: Product].[Other]" & _
"[Retail Price] = Forms![-- DM: Product].[Retail]" & _
"[Production Date] = Forms![-- DM: Product].[Production Date]" & _
"[Production End Date] = Forms![-- DM: Product].[Production End Date]" & _
"[Date Entered] = Forms![-- DM: Product].[Date Entered]" & _
"[Date Last Modified] = Forms![-- DM: Product].[Date Last Modified]" & _
" WHERE [Product Name] = Forms![-- DM: Product].[Product Name]")
thanks!
