I want to obtain Numbers from different forms, add them up and display the output in a different form.
For example, There are two forms: Form 1 and Form 2. The information I need is located in Form 1. So I get the numbers from Form 1, add them up and display the result in Form 2.
I am not sure how to proceed here.
Please advice.
Select the text box where you want to output the answer, go to properties > Go to data>Constrol source>click on “…” and type the following code:
Forms!Form_3!Text_3.Value=(Val(Forms!Form_1!Text_1.Value)) / (Val(Forms!Form_2!Text_2.Value))