Qn: Load Data into UserForm1??

M

Michael Vaughan

Hello Everyone,

I have a UserForm1 with about 15 TextBoxes. A lot of input to be inserted.
Now, let's say I wanted to update most of the info, and NOT all of it.
Right now, I am having to Re-type everything back into the textboxes. Is
there anyway to load the data from the cells from the worksheet into the
UserForm1 so that I don't have to re-type all the information. That would
save a lot of time. Any Help would be appreciated.
Thanks in advance.. mv
 
M

Michael Vaughan

Hi Tom,

Yes Sir.. that did the trick. It was the Initialization command that did
it.

Private Sub UserForm_Initialize()

ComboBox1 = Cells(5, 4)
TextBoxP = Cells(3, 22)
TextBoxFP = Cells(4, 22)
End Sub

Thanks for all your help!!!!!!!
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top