Userform

T

triaz

Hi,

I have a userform that takes user input and places it in a certai
location of a worksheet. The location of the cells is static ie th
information always goes in the exact same place.

The problem I have is, each time the userform is called it needs t
display the completed cell contents in the form, hence making it easie
for the user to:

a) edit any existing content
b) serve as a base for subsequent sheets hence saving time

I can get information from the form to the cells but not the othe
way.

Can anybody help with this?

Thanks in advance.

T
 
B

bizju

Hi,
assuming your data is in cell A1, you could try this

Private Sub UserForm_Initialize()
TextBox1 = Range("a1")
End Sub

regards,
julian
 

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