On Exit Set Value

  • Thread starter Thread starter Steven Britton
  • Start date Start date
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?
 
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
 
Back
Top