Default value

Kanter

New member
Local time
Today, 11:35
Joined
Oct 22, 2007
Messages
4
How can I set the previous record as data source for default value in MS Access table?
 
If you are working directly in the tables, you can't. If you are using a form to do data entry (which you SHOULD be using), then you can.

You would put this in the control's Before Update event:
Code:
Me.YourControlNameHere.Default = Me.YourControlNameHere
 

Users who are viewing this thread

Back
Top Bottom