I've got the following scenario, a user needs to add a note in the Notes field if he has changed the Data Status combo box. For example, he needs to state a reason in the Notes field why he updated the Data Status field from "Active" to "Inactive".
How can I check this before the user navigates to the next record?
First I need to check if the Data Status combo has been updated (presume I can use this code:
and then also if Me.txtNotes <> ""
Which event will allow me to do this? I've tested the On Current event but with no luck.
Hope someone will point me in the right direction.
How can I check this before the user navigates to the next record?
First I need to check if the Data Status combo has been updated (presume I can use this code:
Code:
If Nz(Me.cboDataStatus.OldValue, "") <> Nz(Me.cboDataStatus, "") then
Which event will allow me to do this? I've tested the On Current event but with no luck.
Hope someone will point me in the right direction.