My Question: I would like to have what ever dollar value I type in textbox1 to automatically input its valve into textbox2.
What I know so far: I know I will need to enter this code in the "After Update" section.
The code below is darn close, but what does it need to say if I want to ensure the same $ amount in textbox1 is set to textbox2?
Code:Private Sub Textbox1_AfterUpdate() If Textbox1.Value = "1" Then Textbox2.Value = "10" End If End Sub
Thank you all so much.
V/R
Justin