How do I repeat the value in a field from the previous record usi.

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

In a field in a record how can I insert the value that is in the same field
in the previous record using code?

I know that I can achieve this by clicking in the field in which I want to
insert the value and pressing CTRL + '.

However I have many fields that are empty (null) that require the value in
the above record. How do I automate this programmatically??
 
try something like this - loop though your controls in afterupdate form
event and set control Defaultvalue property to control value
 
Back
Top