Linking of different textboxes to same field

  • Thread starter Thread starter sudha
  • Start date Start date
S

sudha

i have 3 textboxes in my form. i want to take the
information from all the 3 textfields and put them under
1 field in a table. how to do that??
 
h
----- sudha wrote: ----

i have 3 textboxes in my form. i want to take the
information from all the 3 textfields and put them under
1 field in a table. how to do that?
 
Use a single text box on the form. If you want to combine
fields (such as City, State Zip) you should use a query
or a calculated text box. If you want to use fields from
one table to populate a field in another table, you should
be using a query instead. It is possible to use a query
(I think it is called an update query) to update a table,
but that is for unusual circumstances. Just what do you
need to do?
 
Back
Top