Macros?

K

KSchnebly

I have a need to have access do some special manipulations.

I need it to take data from a table, modify it, then copy it back into the
table as new data. Can this be done, and How?
 
J

John W. Vinson

I have a need to have access do some special manipulations.

I need it to take data from a table, modify it, then copy it back into the
table as new data. Can this be done, and How?

Yes, many ways - Macros would be my last choice, though. If by "new data" you
mean to create a new record leaving the original record alone, you could use
an Append query; if you mean to change the record in place, an Update query
would do the job.

For more detailed help please ask a more detailed question.
 
Top