I'm having trouble with the INSERT INTO statement. I can't figure out why I'm getting a syntax error. Any ideas?
strSQL = "INSERT INTO tblTransactions ( PartID, ProjectID, TransDate, Qty, TotalPrice ) "
strSQL = strSQL & "SELECT" & intPartID & ", " & intProjID & ", " & datDate & ", "
strSQL...