G
Guest
I am using the following code in one of my fields:
Private Sub InvDesc_AfterUpdate()
If InvDesc.Value = "Deliveries" Then
AcctCode.Value = "10025"
End If
End Sub
This works fine except i need to know if there is a way to repeat the same
effect since i have about 10 descriptions with each having an acct code. How
can this be done?
Private Sub InvDesc_AfterUpdate()
If InvDesc.Value = "Deliveries" Then
AcctCode.Value = "10025"
End If
End Sub
This works fine except i need to know if there is a way to repeat the same
effect since i have about 10 descriptions with each having an acct code. How
can this be done?