Same Shipping Address

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I would like to have a check box that would autofill Shipping Adrress if it
is the same as Billing Address.
TIA
 
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.
 
Back
Top