Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi All ,
I am not sure if this is the correct group or not to ask this question , If not , I apologize in advance. I have a Question regarding addition of WorkSheets of one Excel Application into the other Master Excel Application. If anybody knows the Answer - You are Welcome. Question : How to add a Excel WorkSheet of one Excel Application into the other Excel Application ( I know that there is a way to consider Range of cells and to proceed , but I can't do that since I am not aware of how many cells are filled with data in the first source sheet) . In summary, I need to create master Excel Application that consists of the sheets of different individual Excel Applications ( In VB ). Thanks In Advance, |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I don't think you can copy a worksheet across instances of excel - however
you can open the all the workbooks you want in the same instance of excel and then copy the sheet that way With Workbooks("Master.xls") Activeworkbooks.worksheets(1).Copy _ After:=.Worksheets(.Worksheets.count) End With -- Regards, Tom Ogilvy "Excel" wrote in message oups.com... Hi All , I am not sure if this is the correct group or not to ask this question , If not , I apologize in advance. I have a Question regarding addition of WorkSheets of one Excel Application into the other Master Excel Application. If anybody knows the Answer - You are Welcome. Question : How to add a Excel WorkSheet of one Excel Application into the other Excel Application ( I know that there is a way to consider Range of cells and to proceed , but I can't do that since I am not aware of how many cells are filled with data in the first source sheet) . In summary, I need to create master Excel Application that consists of the sheets of different individual Excel Applications ( In VB ). Thanks In Advance, |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Addition in Excel | Excel Discussion (Misc queries) | |||
Excel addition formulas | Excel Discussion (Misc queries) | |||
Excel Addition Error | Excel Discussion (Misc queries) | |||
Get Addition of each Column in a sheet | Excel Programming | |||
Excel - Addition Running | Excel Worksheet Functions |