K kitty77 Registered User. Local time Today, 03:13 Joined May 27, 2019 Messages 715 Apr 2, 2024 #1 Is it possible to copy the value from a field on form1 to a field in form2? Would like to do it in a command button if possible. Thanks.
Is it possible to copy the value from a field on form1 to a field in form2? Would like to do it in a command button if possible. Thanks.
MajP You've got your good things, and you've got mine. Local time Today, 03:13 Joined May 21, 2018 Messages 9,439 Apr 2, 2024 #2 Yes. There are probably a few different ways. Something like: Code: Forms!Form2Name.ControlOnForm2Name = Me.ControlOnForm1Name But the natural question is what are you really doing and why copy a value from form 1 to a field on form 2? My first guess would be your tables are not probably designed.
Yes. There are probably a few different ways. Something like: Code: Forms!Form2Name.ControlOnForm2Name = Me.ControlOnForm1Name But the natural question is what are you really doing and why copy a value from form 1 to a field on form 2? My first guess would be your tables are not probably designed.
The_Doc_Man Immoderate Moderator Staff member Local time Today, 02:13 Joined Feb 28, 2001 Messages 29,910 Apr 2, 2024 #3 If it is always the same control on both forms, this is easy, as MajP shows. However, is there any variability in the To or From controls?
If it is always the same control on both forms, this is easy, as MajP shows. However, is there any variability in the To or From controls?