Same Shipping Address

G

Guest

I would like to have a check box that would autofill Shipping Adrress if it
is the same as Billing Address.
TIA
 
G

Guest

Private CheckBox1_AfterUpdate()
If CheckBox1 Then
ShippingAddress1 = BillingAddress1
ShippingAddress2 = BillingAddress2
ShippingCity = BillingCity
ShippingState = BillingState
ShippingZIP = BillingZIP
End If
End Sub

This assumes that all the references above are to bound controls on your form.
 

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