Hi
I wrote code:
when I execute I'm not receiving errors and nothing been inserted into table, when I change code to
Working fine.
Please advise
I wrote code:
Code:
DoCmd.SetWarnings False
DoCmd.RunSQL "INSERT INTO scheme_job_it ([job_no],[status]) " _
& "SELECT 'R'+Right([next_job],5), [Forms]![it_form]![Text133] from scheme_job_no"
when I execute I'm not receiving errors and nothing been inserted into table, when I change code to
Code:
DoCmd.SetWarnings False
DoCmd.RunSQL "INSERT INTO scheme_job_it ([job_no]) " _
& "SELECT 'R'+Right([next_job],5) from scheme_job_no"
Working fine.
Please advise