Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi,
I have a piece of code that imports data from one workbook to another: SourceBook = Range("e9") 'This is called 071203 PRG Risk log v 2.00.xls TargetBook = Range("e4") 'This is called PRG Metrics.xls Workbooks.Open Filename:=SourceBook Sheets("Navigation").Select Sheets("Sandpit").Visible = True Sheets("Sandpit").Select Cells.Select Selection.Copy Windows("PRG Metrics.xls").Activate Sheets("Data").Select Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _ :=False, Transpose:=False Range("A1").Select Sheets("Navigation").Select Windows("071203 PRG Risk log v 2.00.xls").Activate Sheets("Sandpit").Select ActiveWindow.SelectedSheets.Visible = False Workbooks("071203 PRG Risk log v 2.00.xls").Close SaveChanges = False This code works as I want it to. Can anyone tell me how I can replace the references to specific filenames (eg. Windows("PRG Metrics.xls").Activate) with references to SourceBook and TargetBook (so that it would look like Windows(TargetBoook).Activate)? I'm working on this in Office 2007 but it will be running on Office 2003, if that makes any difference. Apologies if this is a simple thing, but I'm not much of a "softie". TIA Dave |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Missing Cloumn data when importing external data | Excel Discussion (Misc queries) | |||
Importing:Data Connection Wizard Doesn't see Source Data - No Impo | Excel Discussion (Misc queries) | |||
Removing Data Tables formed from importing data from Access | Excel Discussion (Misc queries) | |||
Importing data: OLE DB and data link properties dialog | Excel Programming | |||
Importing data, then adding data to the new spreadsheet.. a conund | Excel Discussion (Misc queries) |