Duplicate value in one field into another field

  • Thread starter Thread starter Bill Tarbox
  • Start date Start date
B

Bill Tarbox

I have a form containing 3 fields that should always have the same value. The
user selects or enters the value in the first field/box. The next two
fields/boxes should always contain the same values. How can I force these
next two fields/boxes to duplicate the value from the first field/box. The
first field is titled [Teller Init]. The value entered/selected for this
field should always be the same in the next two fields: [Doc Prep Log Update
By] and [Formatted By].
 
You don't say whether these fields are bound or unbound. If Bound then use
the After Update event of the [Teller Init] field and put this code

[Doc Prep Log Update By] = [Teller Init]
[Formatted By] = [Teller Init]

If unbound, then set the control source property of the [Doc Prep Log Update
By] and [Formatted By] fields to

=[Teller Init]
 
Back
Top