Dec 7, 2007 #1 cranebill IS-IT--Management Jan 4, 2002 1,113 US I am getting an error saying that "SQL command not properly ended", this is my first attempt at VB so any help appreciated: here is my code: Code: SQL_Tasks = "select * from qa.status_report_final where name = " & User
I am getting an error saying that "SQL command not properly ended", this is my first attempt at VB so any help appreciated: here is my code: Code: SQL_Tasks = "select * from qa.status_report_final where name = " & User
Dec 7, 2007 1 #2 simian101 MIS Nov 16, 2007 113 US Try... SQL_Tasks = "select * from qa.status_report_final where name = '" & User &"'" debug.print SQL_Tasks Upvote 0 Downvote
Try... SQL_Tasks = "select * from qa.status_report_final where name = '" & User &"'" debug.print SQL_Tasks