merlynsdad
Programmer
I know this is really simple, but I can't remember part of this SQL phrase. Call it a Senior Moment. I'm taking data that a user has input into a form and dumping it into an existing table. I have this so far
What I can't remember is what the next line is that pushes the Issue into the table! Issue is strIssue coming out of the form.
If the square peg won't fit in the round hole, sand off the corners.
Code:
strSQL = "INSERT INTO tblMaster ([InputDt]),Issue" _
& "SELECT Date() AS [InputDt] " _
& "xxxxxxxxxxx;"
db.Execute strSQL
If the square peg won't fit in the round hole, sand off the corners.