On Exit Set Value

S

Steven Britton

I am trying to take a value from one field and make it the
value in another in VBA. What is the command?
 
D

Dan Artuso

Hi,
If you mean place the value from one control on a form to another control
on the same form, it would be:

Me.NameOfControlToPlaceValueIn = Me.NameOfControlWhereValueIs
 
Top