Copying values if form field to another

  • Thread starter Thread starter MeTed
  • Start date Start date
M

MeTed

Hi all,

I'm simply looking to perform an AfterUpdate on a form where a user enters
data in Field1 and all I want it to do is copy the same data in Field2.
Been messing around with it and I can't get it to work.

Any clues?
 
MeTed said:
Hi all,

I'm simply looking to perform an AfterUpdate on a form where a user enters
data in Field1 and all I want it to do is copy the same data in Field2.
Been messing around with it and I can't get it to work.

Any clues?


Should be just "Me.NameOfTargetControl = Me.NameOfSourceControl"

If that's not working for you, try posting a little more detail. What's the
RecordSource of the form? What are the ControlSource properties of the
target and source controls? Are you doing this in the AfterUpdate event of
the form or of the source control? What code are you using? What happens
when it runs? Is there an error message?
 
Back
Top