I would like to trigger an after update event to populate a field when a certain value of another field is chosen.
The choice field is a combo box. When the user chooses "Write-off" from the drop down, I would like to have the field "InsPayment" to be populated with "0". The InsPayment field is formatted as currency.
So in the AfterUpdate event procedure of the 'Write-off" field, I have the following, which I know is incomplete...and I need help in completing it
Thank you in advance for all the help anyone can give. People on this site are awesome in assisting us 'dabblers'!
The choice field is a combo box. When the user chooses "Write-off" from the drop down, I would like to have the field "InsPayment" to be populated with "0". The InsPayment field is formatted as currency.
So in the AfterUpdate event procedure of the 'Write-off" field, I have the following, which I know is incomplete...and I need help in completing it
Code:
If [PaymentMethod]="write-off" then [InsPayment]= "0"
Thank you in advance for all the help anyone can give. People on this site are awesome in assisting us 'dabblers'!