Same Shipping Address

J

Johnjmn

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

Brian

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.
 
Top