bringing info from one field to another

  • Thread starter Thread starter Dave Eliot
  • Start date Start date
D

Dave Eliot

I have a table with fields [Title] and [Alpha]. After I enter the title, I
would like that title to automatically be entered into the Alpha field, and
be editable.
 
In your form, use the AfterUpdate event procedure of Title to assign the
value to Alpha.

The code would look like this:
Private Sub Title_AfterUpdate
Me.Alpha = Me.Title
End Sub
 
You have made my day!
Thank you.

Allen Browne said:
In your form, use the AfterUpdate event procedure of Title to assign the
value to Alpha.

The code would look like this:
Private Sub Title_AfterUpdate
Me.Alpha = Me.Title
End Sub

--
Allen Browne - Microsoft MVP. Perth, Western Australia.

Reply to group, rather than allenbrowne at mvps dot org.

Dave Eliot said:
I have a table with fields [Title] and [Alpha]. After I enter the title, I
would like that title to automatically be entered into the Alpha field,
and be editable.
 
Back
Top