Copying values if form field to another

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?
 
B

Brendan Reynolds

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?
 

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