Copying Records based off of conditions

Zippyfrog

Registered User.
Local time
Today, 04:11
Joined
Jun 24, 2003
Messages
103
Hello. Can this be done?

I am creating a mini scheduling program, and I have one table that handles all requests (tblRequests), then a second table is the final schedule (tblFinalSchedule). On the table for the requests, I have a field called "locked" that is of type yes/no. The purpose of this field is for a meeting time that is of uptmost importance and that I don't want the program to manipulate it in any way.

Is there a way to program in VBA so that when a button on a separate form is clicked, those records that when the yes/no field is checked (set to true), are copied into the appropriate fields from tblRequests into tblFinalSchedule?
 
An INSERT statement, either in VBA or in a static query, will do just fine.
Include a condition so only those records on your form having the check box ticked will be included in yout statement.

RV
 

Users who are viewing this thread

Back
Top Bottom