Insert field

K

Ken

I have a table called named tblTemp. One of the fields is named TransDate. What I'd like to do is take the date from a field on a form and insert it into the TransDate field in every record in tblTemp. Any suggestions

Ken
 
B

BamaBlacksmith

An "update" action query will solve your problem..
I have a table called named tblTemp. One of the fields is named
TransDate. What I'd like to do is take the date from a field on a form and
insert it into the TransDate field in every record in tblTemp. Any
suggestions?
 
J

John Vinson

I have a table called named tblTemp. One of the fields is named TransDate. What I'd like to do is take the date from a field on a form and insert it into the TransDate field in every record in tblTemp. Any suggestions?

Ken

An Update query will do this:

UPDATE tblTemp
SET TransDate = [Forms]![NameOfForm]![NameOfField];
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top