<brianaasmall@hotmail.com> wrote in message
news:1115644760.403121.101230@f14g2000cwb.googlegr oups.com...[color=blue]
> Hi, I have a form that has an amount paid, billed amount, and expense
> amount field. All three of these fields always has the same value. In
> order to minimize keystroks, I'm trying to input the value in one of
> these three fields and have the other fields fill in automatically. I
> know a way to do this at the form level, the problem is that only one
> of the three fields are being populated at the table level for these
> fields.
>
> Thanks for any help you can offer.
>[/color]
Well without going into the rights and wrongs of your design you'd need
something like this in the edited control's 'after update' event (remember,
your form has *controls* and not *fields* - I have assumed your controls are
text boxes):
Me.txtMyTextBox2 = Me.txtMyTextBox1
Me.txtMyTextBox3 = Me.txtMyTextBox1
Me.Refresh
txtMyTextBox1 is the name of the edited control.
HTH - Keith.
www.keithwilby.com