Forum Discussion
sf49ers19238597
Jan 19, 2024Iron Contributor
How write vba code for three textboxes on form
How write vba code for three textboxes on form. Textbox1 get data from worksheet for display on form. Textbox2 get data from worksheet for display on form Textbox3 put data on to workshee...
- Jan 20, 2024
See the attached version.
sf49ers19238597
Jan 19, 2024Iron Contributor
textbox1 how write vba code for form get data from worksheet show on textbox1. textbox2 how write vba code for form get data from worksheet show on textbox2. textbox3 how write vba code for form put data into worksheet.
How to write vba code to make form to work.
Thanks You
HansVogelaar
Jan 19, 2024MVP
I showed you how to do that in my previous reply!
- sf49ers19238597Jan 20, 2024Iron Contributor
I try get these codes not working for me one my friend found them
'FORM WORKSHEET TO SHOW ON THE FORM TextBox1.Value = Worksheets("Sheet1").[A4].Value TextBox2.Value = Worksheets("Sheet1").[B4].Value PUT DATA INTO WORKSHEET Worksheets("Sheet1").[C4].Value=TextBox3.ValueThanks You
- HansVogelaarJan 20, 2024MVP
See the attached version.