HI, I am getting a sytax error saying that I have a comma that is not in a correct place. I have re-written this code many times over in idfferent forms and I am still getting the runtime syntax error,
Thanks for the help
mStringSQL = "DELETE Driver_daily_lo gs.emp_id, Driver_daily_lo gs.date_recieve d, " _
& "Driver_daily_l ogs.violation, Driver_daily_lo gs.form_manner, Driver_daily_lo gs.log_status, " _
& "Driver_daily_l ogs.status_date , Driver_daily_lo gs.date_destroy ed " _
& "Driver_daily_l ogs.comments, Driver_daily_lo gs.log_id " _
& "FROM Driver_daily_lo gs"
& "Where GetDate() > date_destroyed "
Thanks for the help
mStringSQL = "DELETE Driver_daily_lo gs.emp_id, Driver_daily_lo gs.date_recieve d, " _
& "Driver_daily_l ogs.violation, Driver_daily_lo gs.form_manner, Driver_daily_lo gs.log_status, " _
& "Driver_daily_l ogs.status_date , Driver_daily_lo gs.date_destroy ed " _
& "Driver_daily_l ogs.comments, Driver_daily_lo gs.log_id " _
& "FROM Driver_daily_lo gs"
& "Where GetDate() > date_destroyed "
Comment