Textbox to look at a cell in spreadsheet

  • Thread starter Thread starter Sammy
  • Start date Start date
S

Sammy

I want a to have a textbox set up in one of my userforms
to tell me what the value of cell aa10 is. I need this to
determine if I want to continue with the some other
options or stop.

Can anyone tell me how to achevie this?
Sammy
 
Sammy,

Put this in the UserForm_Activate event.

Textbox1.Text = Range("AA10").Value

HTH
Henry
 

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

Back
Top