QUESTION: How would I edit blow event to include an IF order date is < than 01/01/02 then calc rate at 7.5 percent
but if order date is >12/31/01 then calc at 8.0 percent?
private Sub cmbSave_Click()
If Me.ChurchState = "ca" Then
Me.SalesTax = 0.0775 * Me.CalcSubTotal
Me.SalesTax.Requery
End If
Me.SubTotal = Me.CalcSubTotal
Me.ShipCharges = Me.CalShipTotal
Me.PaymentAmount = Me.CalcTotalPayments
Me.TotalAmountDue = Me.calcTotalDue
Me.OrderBalance = Me.calcBalanceDue
'Forms!frmContacts.PastAmountDue = Me.OrderBalance
DoCmd.DoMenuItem acFormBar, acRecordsMenu, acSaveRecord, , acMenuVer70
Do you think this might work? Then I could keep original sales tax text box, old records remain intake, etc...
Thanks for your input
CK8
but if order date is >12/31/01 then calc at 8.0 percent?
private Sub cmbSave_Click()
If Me.ChurchState = "ca" Then
Me.SalesTax = 0.0775 * Me.CalcSubTotal
Me.SalesTax.Requery
End If
Me.SubTotal = Me.CalcSubTotal
Me.ShipCharges = Me.CalShipTotal
Me.PaymentAmount = Me.CalcTotalPayments
Me.TotalAmountDue = Me.calcTotalDue
Me.OrderBalance = Me.calcBalanceDue
'Forms!frmContacts.PastAmountDue = Me.OrderBalance
DoCmd.DoMenuItem acFormBar, acRecordsMenu, acSaveRecord, , acMenuVer70
Do you think this might work? Then I could keep original sales tax text box, old records remain intake, etc...
Thanks for your input
CK8