Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 210
Default Displaying data from multiple spreadsheets into one spreadsheet.

Hello

I am new to using macros so i need some help to create a macro that copies
data from a bunch of spreadsheets(about 20) and displays the data in one
spreadsheet. Also is it possiable to do this without actually opening the
spreadsheets that I want to copy the data from?

Thanks
Robin
  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 9,101
Default Displaying data from multiple spreadsheets into one spreadsheet.

Do you meand spreadsheets or workbooks?

Speadsheets can be copied within one workbook without activating each sheet.

Workbooks have to be opened to copy the sheets, but the original workbooks
can be closed without altering the data or the data of the workbook.

"Robin" wrote:

Hello

I am new to using macros so i need some help to create a macro that copies
data from a bunch of spreadsheets(about 20) and displays the data in one
spreadsheet. Also is it possiable to do this without actually opening the
spreadsheets that I want to copy the data from?

Thanks
Robin

  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 210
Default Displaying data from multiple spreadsheets into one spreadshee

oops, srry i meant workbooks. also the workbooks are all in different folders.

"Joel" wrote:

Do you meand spreadsheets or workbooks?

Speadsheets can be copied within one workbook without activating each sheet.

Workbooks have to be opened to copy the sheets, but the original workbooks
can be closed without altering the data or the data of the workbook.

"Robin" wrote:

Hello

I am new to using macros so i need some help to create a macro that copies
data from a bunch of spreadsheets(about 20) and displays the data in one
spreadsheet. Also is it possiable to do this without actually opening the
spreadsheets that I want to copy the data from?

Thanks
Robin

  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 9,101
Default Displaying data from multiple spreadsheets into one spreadshee

two more questions

1) Allworksheets, activeworsheet, or specific names
2) All sub-folders under a root directory? Some people put the names of
each file in the worksheet in a column, then opens each of the file name
using the worksheet. Do you need all *.xls files or using a filter (looking
for name starting with or contain some string)?

"Robin" wrote:

oops, srry i meant workbooks. also the workbooks are all in different folders.

"Joel" wrote:

Do you meand spreadsheets or workbooks?

Speadsheets can be copied within one workbook without activating each sheet.

Workbooks have to be opened to copy the sheets, but the original workbooks
can be closed without altering the data or the data of the workbook.

"Robin" wrote:

Hello

I am new to using macros so i need some help to create a macro that copies
data from a bunch of spreadsheets(about 20) and displays the data in one
spreadsheet. Also is it possiable to do this without actually opening the
spreadsheets that I want to copy the data from?

Thanks
Robin

  #5   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 210
Default Displaying data from multiple spreadsheets into one spreadshee

1) Allworksheets.
2)nope, all folders are under different directories and i would be using a
filler.

thanks for your time Joel :-)

Regards
Robin


"Joel" wrote:

two more questions

1) Allworksheets, activeworsheet, or specific names
2) All sub-folders under a root directory? Some people put the names of
each file in the worksheet in a column, then opens each of the file name
using the worksheet. Do you need all *.xls files or using a filter (looking
for name starting with or contain some string)?

"Robin" wrote:

oops, srry i meant workbooks. also the workbooks are all in different folders.

"Joel" wrote:

Do you meand spreadsheets or workbooks?

Speadsheets can be copied within one workbook without activating each sheet.

Workbooks have to be opened to copy the sheets, but the original workbooks
can be closed without altering the data or the data of the workbook.

"Robin" wrote:

Hello

I am new to using macros so i need some help to create a macro that copies
data from a bunch of spreadsheets(about 20) and displays the data in one
spreadsheet. Also is it possiable to do this without actually opening the
spreadsheets that I want to copy the data from?

Thanks
Robin



  #6   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 11,123
Default Displaying data from multiple spreadsheets into one spreadsheet.

Hi Robin

I have code and a add-in on my site that you can try
http://www.rondebruin.nl/tips.htm

See the "Copy/Paste/Merge examples" section


--

Regards Ron de Bruin
http://www.rondebruin.nl/tips.htm


"Robin" wrote in message ...
Hello

I am new to using macros so i need some help to create a macro that copies
data from a bunch of spreadsheets(about 20) and displays the data in one
spreadsheet. Also is it possiable to do this without actually opening the
spreadsheets that I want to copy the data from?

Thanks
Robin

  #7   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 9,101
Default Displaying data from multiple spreadsheets into one spreadshee

Did Ron help you? I can modify any of his examples if necessary. I think if
all the folders are in random locations you probably want to put the
directories on a worksheet in your summary workbooks. You can call the sheet
Summary Folders.

The code can take each of these directories and then search for all files in
the directory such as abc*.xls. then copy all the workssheets in these book
to the summary sheet.

"Robin" wrote:

1) Allworksheets.
2)nope, all folders are under different directories and i would be using a
filler.

thanks for your time Joel :-)

Regards
Robin


"Joel" wrote:

two more questions

1) Allworksheets, activeworsheet, or specific names
2) All sub-folders under a root directory? Some people put the names of
each file in the worksheet in a column, then opens each of the file name
using the worksheet. Do you need all *.xls files or using a filter (looking
for name starting with or contain some string)?

"Robin" wrote:

oops, srry i meant workbooks. also the workbooks are all in different folders.

"Joel" wrote:

Do you meand spreadsheets or workbooks?

Speadsheets can be copied within one workbook without activating each sheet.

Workbooks have to be opened to copy the sheets, but the original workbooks
can be closed without altering the data or the data of the workbook.

"Robin" wrote:

Hello

I am new to using macros so i need some help to create a macro that copies
data from a bunch of spreadsheets(about 20) and displays the data in one
spreadsheet. Also is it possiable to do this without actually opening the
spreadsheets that I want to copy the data from?

Thanks
Robin

  #8   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 210
Default Displaying data from multiple spreadsheets into one spreadshee

thanks for ur time joel. i will try ron's codes and see if they help.

"Joel" wrote:

Did Ron help you? I can modify any of his examples if necessary. I think if
all the folders are in random locations you probably want to put the
directories on a worksheet in your summary workbooks. You can call the sheet
Summary Folders.

The code can take each of these directories and then search for all files in
the directory such as abc*.xls. then copy all the workssheets in these book
to the summary sheet.

"Robin" wrote:

1) Allworksheets.
2)nope, all folders are under different directories and i would be using a
filler.

thanks for your time Joel :-)

Regards
Robin


"Joel" wrote:

two more questions

1) Allworksheets, activeworsheet, or specific names
2) All sub-folders under a root directory? Some people put the names of
each file in the worksheet in a column, then opens each of the file name
using the worksheet. Do you need all *.xls files or using a filter (looking
for name starting with or contain some string)?

"Robin" wrote:

oops, srry i meant workbooks. also the workbooks are all in different folders.

"Joel" wrote:

Do you meand spreadsheets or workbooks?

Speadsheets can be copied within one workbook without activating each sheet.

Workbooks have to be opened to copy the sheets, but the original workbooks
can be closed without altering the data or the data of the workbook.

"Robin" wrote:

Hello

I am new to using macros so i need some help to create a macro that copies
data from a bunch of spreadsheets(about 20) and displays the data in one
spreadsheet. Also is it possiable to do this without actually opening the
spreadsheets that I want to copy the data from?

Thanks
Robin

  #9   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 210
Default Displaying data from multiple spreadsheets into one spreadshee

hi ron

u really have some good stuff at ur site. i will try out ur codes right away.

"Ron de Bruin" wrote:

Hi Robin

I have code and a add-in on my site that you can try
http://www.rondebruin.nl/tips.htm

See the "Copy/Paste/Merge examples" section


--

Regards Ron de Bruin
http://www.rondebruin.nl/tips.htm


"Robin" wrote in message ...
Hello

I am new to using macros so i need some help to create a macro that copies
data from a bunch of spreadsheets(about 20) and displays the data in one
spreadsheet. Also is it possiable to do this without actually opening the
spreadsheets that I want to copy the data from?

Thanks
Robin


  #10   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 210
Default Displaying data from multiple spreadsheets into one spreadshee

hello again,
well i have looked through ron's examples and what u said abt puting my
directories on a summary worksheet seems like a really great idea.

so i was wondering if u could tell me in more detail as to how i can
integrate the summary workbook with the macro(i am thinking abt using the
"MergerwithAutoFilter" macro from Ron's examples).



Thanks and Regards
Robin

"Joel" wrote:

Did Ron help you? I can modify any of his examples if necessary. I think if
all the folders are in random locations you probably want to put the
directories on a worksheet in your summary workbooks. You can call the sheet
Summary Folders.

The code can take each of these directories and then search for all files in
the directory such as abc*.xls. then copy all the workssheets in these book
to the summary sheet.

"Robin" wrote:

1) Allworksheets.
2)nope, all folders are under different directories and i would be using a
filler.

thanks for your time Joel :-)

Regards
Robin


"Joel" wrote:

two more questions

1) Allworksheets, activeworsheet, or specific names
2) All sub-folders under a root directory? Some people put the names of
each file in the worksheet in a column, then opens each of the file name
using the worksheet. Do you need all *.xls files or using a filter (looking
for name starting with or contain some string)?

"Robin" wrote:

oops, srry i meant workbooks. also the workbooks are all in different folders.

"Joel" wrote:

Do you meand spreadsheets or workbooks?

Speadsheets can be copied within one workbook without activating each sheet.

Workbooks have to be opened to copy the sheets, but the original workbooks
can be closed without altering the data or the data of the workbook.

"Robin" wrote:

Hello

I am new to using macros so i need some help to create a macro that copies
data from a bunch of spreadsheets(about 20) and displays the data in one
spreadsheet. Also is it possiable to do this without actually opening the
spreadsheets that I want to copy the data from?

Thanks
Robin

Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Splitting data from one spreadsheet into multiple spreadsheets yowzers Excel Worksheet Functions 2 January 20th 10 01:51 PM
import data from several spreadsheets into one spreadsheet RELIANCE Excel Worksheet Functions 2 January 14th 10 11:30 PM
Load data from multiple spreadsheets into one master spreadsheet Scarlet Excel Programming 1 June 6th 06 06:04 PM
How to extract cells from multiple spreadsheets into one new spreadsheet Guy New Users to Excel 3 March 14th 05 02:14 PM
Link multiple spreadsheets to one central spreadsheet using a macro Amanda[_5_] Excel Programming 1 August 18th 04 09:59 PM


All times are GMT +1. The time now is 07:58 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"