hello
i have a two tables in ms access: "checkpoints" and "checks_projects"
i have a form and there is a date text box in it. i added data to checks_projects table form checkpoints where the creation_date field of the checkpoints is less than this textbox.
but after sometime some new data will be added to the checkpoints tableand i want to add this new daat those are less than this text box date to the check project table. but i don't how to do this
can you help me please?
i wrozte the below code but it doesn't work
thank you
DoCmd.RunSQL ("insert into checks_projects(Creation date) select Creation date from CheckPoints left join checks_projects on CheckPoints.projectname=checks_projects.projectname where checks_projects.projectname=text0.value and checks_projects.Creation date is null;")
i have a two tables in ms access: "checkpoints" and "checks_projects"
i have a form and there is a date text box in it. i added data to checks_projects table form checkpoints where the creation_date field of the checkpoints is less than this textbox.
but after sometime some new data will be added to the checkpoints tableand i want to add this new daat those are less than this text box date to the check project table. but i don't how to do this
can you help me please?
i wrozte the below code but it doesn't work
thank you
DoCmd.RunSQL ("insert into checks_projects(Creation date) select Creation date from CheckPoints left join checks_projects on CheckPoints.projectname=checks_projects.projectname where checks_projects.projectname=text0.value and checks_projects.Creation date is null;")