I've got a scenario where I need to set a combo box value depending if the record is being updated:
or if the record is an insert:
But how do I programmatically check if the record is going to be added or updated?
I'm sure it must be possible with a simple If statement but I can't seem to locate it on previous threads.
Code:
Me!cboDataStatus = "Corrected"
or if the record is an insert:
Code:
Me!cboDataStatus = "Initial"
But how do I programmatically check if the record is going to be added or updated?
I'm sure it must be possible with a simple If statement but I can't seem to locate it on previous threads.