Duplicate value in one field into another field

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].
 
D

Dennis

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]
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top