linking textfields

S

sudha

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?
 
E

Eric Cárdenas [MSFT]

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??
------------
You can concatenate the values of three textboxes into one field in a table:

mytable.myfield = me!textbox1 & me!textbox2 & me!textbox3

Hope this helps,
 

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