Transfer Value From Active Worksheet In One Workbook To Another Workbook?

May 9, 2014

I am trying to transfer a value from the active worksheet in one workbook to another workbook. I keep getting a subscript out of range error on the line that uses activeworksheet command when I run my code.

View 3 Replies


ADVERTISEMENT

Cannot Transfer Data From 1 Worksheet To Another In Same Workbook

Mar 27, 2014

I have the following "if" statement

=IF('Audit Blank'!H53=2,SUM('Audit Blank'!I12:M12),"")

but it is not doing what i want and think i need some vba coding which i am not up to speed with. Basically i have an excel workbook containing a number of worksheets and what i want to do is enter data on the 1st worksheet which then populates the summed data into a second worksheet into a specific column dependant on the week no. that appears in a cell on the 1st worksheet. eg. the week number will appear in cell H53 the details in the sum of H12:L12 would then appear in cell I4 under the column heading Week 1 in the second worksheet, the sum of H13:L13 would then appear in cell I5 and so on. Where my "if" statement falls down is when the week number changes to "2" all the data under the column heading week 1 disappears but i need it to remain and the data for week 2 to be placed under the column heading week 2 in the second worksheet.

View 1 Replies View Related

Transfer Data In 2 Identical Workbook With Multiple Worksheet?

Dec 23, 2013

I try to transfer a data from multiple worksheet in a same 2 identical workbook. One I keep for me and the other one will be update by the user. So I need the data update by the user can be transfer to my workbook and only the new data not the one that already in my workbook. I try with the code below but it seem not working. The code run but nothing being transfer.

[Code] ....

View 1 Replies View Related

Formula To Transfer All Worksheets In Directory (only Single Worksheet) Into One Workbook

Jul 16, 2014

I am trying to quickly transfer all worksheets in a directory into one worksheet listing all worksheet names in the tabs in number order.

The formula have so far is below. But it does not name the individual tabs as the worksheet names in no order.

Sub GetSheets ()
Path = "Y:
Filename = Dir(Path & "*.xls")
Do While filename ""
Workbooks.Open Filename:=Path & Filename, ReadOnly:=True
Sheet.Copy After:=ThisWorkbook.Sheets (1)
Next Sheet
Workbooks (Filename) . Close
Filename = Dir ()
Loop
End Sub

The worksheets appear as follows 1982-001, 1982-003 up to 1982-250 ( I want them in single workbook but as multiple tabs in number order)

View 1 Replies View Related

Macro To Transfer All Data From One Workbook To Specific Sheet In Another Workbook

Feb 23, 2014

I have data in 2 different workbooks, and I need to transfer all data in 'Jx_ex1' to sheet1 in the 'template' workbook, and all data in 'Gr_ex1' to sheet2 in 'template' workbook. All data should be transferred to the same cell numbers, from A1 to Y5000. I actually have loads of workbooks to transfer to the template but if I have an example with the two then im sure I can work out how to modify it. All files will be in the same folder.

View 8 Replies View Related

Transfer Data From Open Workbook To Closed Workbook

Dec 16, 2008

im looking for some code to transfer cells a3,d6,f9,i6,k10 and i18 from open workbook named "hello"

to

closed workbook named "goodbye" and input to next available row
a3 to a1
d6 to a2
f9 to a3
i6 to a4
k10 to a5
i18 to a6

View 14 Replies View Related

Deleting Workbook Based On Criteria In Active Worksheet?

Aug 16, 2012

I am trying to delete a workbook, yes the whole workbook, if cell A1 is blank.

View 2 Replies View Related

Make Array Reference Cells On Another Worksheet Of Active Workbook

Feb 27, 2014

My company has complicated time sheets because we have several tasks that are billed differently to different people. Once a month we have to sit down and compile everything from several forms and so forth. I have created a worksheet that pulls all the numbers together so that they can simply be copied and pasted into our reports. The hope was to simply copy this worksheet into a time sheet workbook and it will pull out all of the correct numbers. Although all the time sheet workbooks are set up the same way, whenever I copy the file into another time sheet workbook the program keeps its references from the workbook it was in. Make sense? is there a formula that I can insert into an array to tell it to pull the information from the worksheet with the same name, but in the active workbook?

here is one of the equations I am working with:

{=TRANSPOSE('1st week'!A10:L48)}

so it would look something like this maybe

{=TRANSPOSE('[active workbook]1st week'!A10:L48)} but this doesn't work of course.

View 3 Replies View Related

Pull Data From One Closed Workbook Into Active Workbook With Command Button

Feb 27, 2014

I've been using the following code to bring in individual cell values from one closed workbook to an active one. I would like to modify this is possible to bring in multiple cells at once and also pull them into a different worksheet in the active workbook. Basically, my command button is on Sheet1 but I'd like the data to pull into a cell on Sheet2.

Private Sub CommandButton1_Click()
With Range("Q9")
.Formula = "='C:Users[Workbook Name.xlsm]Worksheet Name'! N27"
.Value = .Value
End With

View 6 Replies View Related

Making Backup Copy Of Active Workbook While Workbook Is Open

Jun 30, 2014

I run a model in Excel that automatically saves my file every xx iterations. After saving the file I want to make a backup of the file. Tried

[Code] .....

but get a permission denied error message.

I don't want to use .SaveAs as it is a huge file that takes a while to save and SaveAs has a tendency to break links that should not be broken..

View 13 Replies View Related

Copy Data From Closed Workbook And Append In Active Workbook?

Feb 6, 2013

I have some vba that opens a closed workbook, copies data from a named range and then pastes it to the active workbook.

However, what is happening is that the closed workbook is opened and only part of the data is pasted. What I would prefer to happen is this:

Open the closed workbook-->copy the named range-->paste(append) to next empty cell in column B.

Heres the code that I have got.

Sub Workbook_test()Dim wb As Workbook
Application.ScreenUpdating = False ' turn off the screen updating
Set wb = Workbooks.Open("G:WAREHOUSEPlanningSmartNew Training Plan raining plan.xls", True, True)

[Code]....

View 5 Replies View Related

Open Workbook, Find Sheet That Contains Cell Value From Active Workbook

Jun 20, 2008

I'm trying to figure out a way to find a specific sheet in a workbook that does not contain the macro. Within the macro I have a cell which holds the name of the specific sheet I would like to find but I can't get it to work for some reason...

'Dim officen As Integer
'Dim thiswb As Workbook

officen = Range("A2").Value
Set thiswb = ActiveWorkbook
' Open the Active Info file
Workbooks.Open "C:My DcoumentsActive 20080616.xls", , , , "xxxxxx"
' Dim sourcewb As Workbook
Set sourcewb = Workbooks.Open"Active 20080616.xls"

Sheets("officen").Select
RowCount = ActiveSheet.UsedRange.Rows.Count
Range("B2").Select.............................

View 8 Replies View Related

Copy Of Sheet From Specific Workbook To Active Workbook

Mar 6, 2014

My requirement is as follows......

I want to get a copy of worksheet from specific workbook to active work book in which i want a copy of sheet get moved.

View 2 Replies View Related

Transfer Data From Workbook To Workbook

Nov 9, 2008

I'm after some Vb Code for windows97 That will Export Data from one Workbook to another.

Please find attached both workbooks. Both workbooks will always be in the same folder.

I have a Rota sheet that i update weekly, once completed i need to export the data to the Master Rota workbook.

I need it to find the Staff Id Number then find the correct Date and import the Data in the correct cells.

A simple Copy and Paste is not an option with the master rota sheet.

View 14 Replies View Related

Copy Of Sheet From Workbook 1 To X Workbook Which Is Currently Active?

Mar 6, 2014

I have a Picture in a workbook kept open. ( workbook 1 )And i have some X workbook open....i want a copy of sheet from workbook 1 To X workbook which is currently active.

View 1 Replies View Related

Making Workbook Opened From Other Workbook Active

Nov 20, 2006

I have a workbook that is a formatted report that I need to insert data from a name variable "CSV" file. I have created a macro in this workbook that calls an "Open" dialog for CSV files that I can use to browse to and open the source file. The macro then is supposed to "select all" copy and close the workbook then make the original workbook active and paste the data starting at row 2. The macro "seems" to be working perfectly except when I do the open the macro then makes the original workbook active, selects all copies then wants to close the original workbook. How can I tell the macro that the csv file that I just opened should be the active workbook, baring in mind that the name won't be known before the time it's opened so I can't hardcode the "active. workbook (NAME) "route.

View 9 Replies View Related

Copy Worksheets From Active Workbook To A New Workbook

Apr 22, 2009

I am trying to code a Macro so that i can take all the worsheets and save them as individual Workbooks. I wrote a macro that appeared to work, but, after it saves the first sheet as a workbook, i get a debug error.

MS VB Script error:
Runtime error '9':
Subscript out of range

Any advise would be greatly appreciated.

Thank you

Code is below..

Sub saveall()
'
'
For Each ws In ActiveWorkbook.Worksheets

ThisFN = "C:Documents and SettingsUserDesktop" & ws.Name & ".xls"
I = I + 1
Sheets(I).Select
Sheets(I).Move
ActiveWorkbook.SaveAs Filename:= _
ThisFN, FileFormat:=xlNormal, _
Password:="", WriteResPassword:="", ReadOnlyRecommended:=False, _
CreateBackup:=False

Next ws

End Sub

View 9 Replies View Related

Copy Worksheet From Closed Workbook To Current Opened Workbook

Aug 21, 2014

I have an open workbook (A) and this is where the code should reside. I want to use VBA to copy the content of an entire worksheet from a closed workbook (B) to an existing worksheet in workbook A. How would you accomplish this?

View 7 Replies View Related

Copy Data From Multiple Sheets In Workbook To Different Workbook But On One Worksheet

Feb 7, 2014

I am looking for a code that would copy the data from each worksheet in a given workbook and then paste to just one worksheet within a different workbook. The Sheet names are auto generated when I run this canned report but the naming structure is always the same...the first worksheet is named Repair Details and then the next sheet is named Repair Details_1, the next sheet is named Repair Details_2 and so on for every sheet in workbook. So I would like to copy all of the data(Headers to last cell) and then paste in a worksheet(ex: Master Repair Report.xlsx and the worksheet could be titled Master Repair Details) on a different workbook, then the next sheet would copy from the one under the header to the last record and paste to the same workbook. This process would repeat for every worksheet in the Repair Details Workbook and paste to Master Repair Details worksheet in the Master Repair Report workbook.

View 4 Replies View Related

Copy Values From A Worksheet To Another Workbook. Source Workbook Name Unknown

Aug 12, 2009

I need to copy a range of values (actually two ranges). The ranges are of fixed size. Le't say A2:D20 and E2:H20.

Both workbooks have the exact same layout, and they both have the same named worksheet (in this case it's called Entry). However the actual filename of the source workbook is unknown. I know numerous users have changed the filename of the xls file.

I want to instruct them to open the old and new workbook, and open a third workbook containing the copy macro, they run the macro and it copies the data.

How can I reference a known worksheet name but of an unknown workbook name esp when the source and destination share the worksheet name?

View 3 Replies View Related

Copy Data From One Workbook To Specific Worksheet Of Another Workbook

Feb 19, 2014

I have a sheet named sheet9 and i want to copy the data from this workbook-sheet9 to a workbook called import data and sheet named "database".

View 5 Replies View Related

Transfer Information From One Workbook To Another

Feb 17, 2010

I have a workbook which contains information that I would like to transfer to a new spreadsheet.

If column I (in the exsisting workbook) contains the words 'New Business' I would like the entire row (all values) to transfer to the new spreadsheet. I need the information from the entire workbook (containing 12 worksheets) to transfer over to the new spreadsheet if column I states 'New Business'.

I have tried many things, most recently VLOOKUP, but with no luck at all.

I understand that a macro is the best option, however my excel skills are nowhere near advanced enough to know where to begin

View 12 Replies View Related

How To Transfer Data To Another Workbook

Jan 30, 2014

I have a program I built and need to transfer data from a form, from workbook "C" to another workbook "W". The workbooks are open by different users . 90% of what I locate on the Web pertains to worksheets and what don't, does not work. The folders are stored in my Public Documents.

View 4 Replies View Related

Transfer Data From One Workbook To Another

Mar 19, 2014

How to transfer data from one workbook that's open to another in a macro form. I included two sample data workbooks I have. Sample will have the macro inside it and will already be open for the other portion of the macro that will be running. I already have code that will open up the Sample2 file. I'm trying to take specific data from Sample and paste it into a summary sheet in Sample2. In Sample i will be cycling through roughly 30 sheets to find this data but I only included one because I just need to know the basics on how to make this work and then how to modify it.

Sample2.xlsx Sample.xlsx

View 4 Replies View Related

Transfer Textbox Value To Another Workbook

Jul 26, 2006

From the code below you will find that I am trying to get a textbox value from one workbook to another. I have two workbooks (WorkbkA and WorkbkB) each contains a Textbox named "Scope". I want to transfer the value in WorkbkA's Textbox to WorkbkB's Textbox.

The below code does work however it is not the cleanest way of doing things. Everytime I use the below code the Textbox moves out of it's original position from the Cut and Pasting.

Sub ImportTextbox ()

Worksheets("Cover Page").Activate
ActiveSheet.Unprotect Password:="TVNERREFHKSELFZ"
ActiveSheet.Shapes("Scope").Delete
ActiveWindow.ActivateNext
ActiveSheet.Shapes("Scope").Select
Selection.Copy
ActiveWindow.ActivateNext
Worksheets("Cover Page").Activate
Range("A56").Select
ActiveSheet.Paste
ActiveSheet.Protect Password:="TVNERREFHKSELFZ"

End Sub

View 6 Replies View Related

Copy A Worksheet Of Information In One Workbook To A Worksheet In Another Workbook

Mar 23, 2009

I have code that i use to copy a worksheet of information in one workbook to a worksheet in another workbook. All i need is some guidance on how to copy a second worksheet from workbook 1 to a second worksheet in workbook 2. Should be fairl straight forward.

In the below i am copying the sheet Phone_data to a second work book sheet also called Phone_Data, i would like to include in the same proccess a sheet called Sur_Data from workbook 1 copy to a sheet called Sur_Data_R in the second. All the other features like find next empty row also apply.

View 2 Replies View Related

Transfer Data From One Workbook To Several Workbooks

Jun 16, 2013

I have several hundred workbooks an am trying to write a macro to transfer data from another workbook "_TABLES.xlsm" to each of them. By using 'Record Macro' I have so far come up with -

Code:
Windows("_TABLES.xlsm").Activate
Columns("B:L").Select
Selection.Copy
Windows("12-01-01 Results.xlsm").Activate
Sheets("ToDBase").Select
Range("B1").Select
ActiveSheet.Paste

Where "12-01-01 Results.xlsm" is the receiving book. My question is - what do I call a generic sheet so as I may drop the macro in all the other workbooks not labelled "12-01-01 Results.xlsm".

View 3 Replies View Related

Macro To Transfer Data From One Sheet To Another In Same Workbook

Jan 9, 2013

I am now on my third attempt to perform a fairly basic task of transferring data keyed to a separate log. I originally started with a user form transferring to a separate work book however this was not practical. I then had a values keyed into a worksheet being transferred to a separate workbook however network issues mean this data keeps being lost.

I am now trying to simply transfer data keyed in one worksheet to the next available line in a different worksheet in the same workbook.

Here is my code that I have chopped and mashed together from my previous versions.

The sheet the data is be keyed into is called Key and the sheet where the data is to be sent is called log. I would also like the values in the Key sheet to cleared once transferred:

Dim iRow As Long
Dim ws As Worksheet
Set ws = Worksheets("Log")
iRow = ws.Cells.Find(What:="*", SearchOrder:=xlRows, _
SearchDirection:=xlPrevious, LookIn:=xlValues).Row + 1
ws.Cells(iRow, 1).Value = Key.Range("E7")
Key.Range("e7").Value=""""
End Sub

View 9 Replies View Related

Transfer Data Cells Into A Closed Workbook

Sep 25, 2007

Workbook A contains data that feeds into Workbook B. Workbook B retrieves data from Workbook A (via a macro) and then puts data into cells in Workbook B, Workbook B process the information and does calculations etc... on the data from A. Now I want to transfer the results back to Workbook A in specific cells.

Example (just for information only and not actual problem): Workbook A, contains employee information, years in company, position etc... This is transferred to Workbook B (this portioin I have coded and tested). Workbook B calculates pay, benefits etc... Now I want to put the pay information back to Workbook A.

View 9 Replies View Related

Know The Active Workbook

Feb 15, 2007

I am working on an application where I have several workbooks open at the same time. I need to know which one is active. How do I do that?

View 3 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved