Userform data

MUKESHY12390

Well-known Member
Joined
Sep 18, 2012
Messages
901
Office Version
  1. 2013
  2. 2011
  3. 2010
  4. 2007
Platform
  1. Windows
Hi ,frnds ,
Is anybody know Following thing.
How i can save data form Userform to another workbook..( at same time ,that workbook should not be active. ).
Let me give example:-
Userform of Workbook("TimeTracker") and I need data of userform in Another workbook("Mainworkbook")
Thanks in Advance..!
 

Excel Facts

Format cells as time
Select range and press Ctrl+Shift+2 to format cells as time. (Shift 2 is the @ sign).
Just qualify the range you want to update with its Workbook and Worksheet. Example:

Code:
Workbooks("Mainworkbook.xls").Worksheets("Sheet1").Range("A1").Value = TextBox1.Value
 
Upvote 0
Just qualify the range you want to update with its Workbook and Worksheet. Example:

Code:
Workbooks("Mainworkbook.xls").Worksheets("Sheet1").Range("A1").Value = TextBox1.ValueE




Thanks.. Andrew...!:) your code works perfect when Workbooks("Mainworkbook.xls") is active

But
When Workbooks("Mainworkbook.xls") is not Active it give Run-TimeError 9 (Subscript out of Range)

my problem is that when User Put data in Userform ,Same time data should go in Another Non-Active Workbooks("Mainworkbook.xls")

pls help ...!!!!!
 
Upvote 0
Andrew's code works for me when Mainworkbook.xls is open, but not the active workbook. It gives me that same error when Mainworkbook.xls is closed.
 
Upvote 0

Forum statistics

Threads
1,223,243
Messages
6,170,964
Members
452,371
Latest member
Frana

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