Getting Data from a Userform into specific Cells

sandyboath

New Member
Joined
Mar 21, 2006
Messages
42
I have created a userform for a travel request and am trying to get so that when a user opens the spreadsheet the user form opens, this is working fine, however once the form is open and I try and fill out the form the information does not go into the cells.

IE Travellers Name : Joe Blogs is entered onto the user form and this should be placed into a merged cell. I have tried Range("B6:D6").Select but to no avail.

I am also trying to place a clear and close button on the form.

Any help would grafefully appreciated

thanks
SB
 

Excel Facts

Get help while writing formula
Click the italics "fx" icon to the left of the formula bar to open the Functions Arguments dialog. Help is displayed for each argument.
I have assumed that the data is entered into a TextBox on the form.
Code:
Range("B6") = TextBox1.Value
Should get the value onto the worksheet.

To clear the TextBox:
Code:
TextBox1.Value = ""

To close the form:
Code:
UserForm1.Hide
 
Upvote 0

Forum statistics

Threads
1,214,932
Messages
6,122,332
Members
449,077
Latest member
jmsotelo

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top