Just wondering if you could import data into a textbox on a userform. Been looking around and I can't find anything that says you can or code.
Printable View
Just wondering if you could import data into a textbox on a userform. Been looking around and I can't find anything that says you can or code.
import what data from where?
you can put any string into a textbox
vb Code:
textbox1.text = mydatastring
I'm trying to import data from a spreadsheet into a textbox within a userform
vb Code:
textbox1.text = sheets("sheet1").range("b3").value
Thanks guys