copying data across fields from form

  • Thread starter Thread starter seth
  • Start date Start date
S

seth

is there any way to copy data across fields within a table from a form?
on a lot of websites when you purchase something, you would have a bill
to/ship to address
i am building a form for this and would like to know if it is possible to
add a "same as ship to" checkbox that would copy the ship to address fields
to the bill to address fields
thanks
 
Sure, Seth. Just do a series of assignment statements in the On_Click event
of the button:

Me![ShipToContact] = Me![BillToContact]
Me![ShipToAddress]=Me![BillToAddress]
etc.
 

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

Back
Top