PC Review


Reply
Thread Tools Rate Thread

Displaying data from multiple spreadsheets into one spreadsheet.

 
 
Robin
Guest
Posts: n/a
 
      4th Jun 2008
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 With Quote
 
 
 
 
Joel
Guest
Posts: n/a
 
      4th Jun 2008
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 With Quote
 
Robin
Guest
Posts: n/a
 
      4th Jun 2008
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 With Quote
 
Joel
Guest
Posts: n/a
 
      4th Jun 2008
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 With Quote
 
Robin
Guest
Posts: n/a
 
      4th Jun 2008
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 With Quote
 
Ron de Bruin
Guest
Posts: n/a
 
      4th Jun 2008
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" <(E-Mail Removed)> wrote in message news:7797167D-9784-42D9-8C2C-(E-Mail Removed)...
> 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 With Quote
 
Joel
Guest
Posts: n/a
 
      5th Jun 2008
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 With Quote
 
Robin
Guest
Posts: n/a
 
      5th Jun 2008
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

 
Reply With Quote
 
Robin
Guest
Posts: n/a
 
      5th Jun 2008
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" <(E-Mail Removed)> wrote in message news:7797167D-9784-42D9-8C2C-(E-Mail Removed)...
> > 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 With Quote
 
Robin
Guest
Posts: n/a
 
      5th Jun 2008
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 With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

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


Similar Threads
Thread Thread Starter Forum Replies Last Post
Splitting data from one spreadsheet into multiple spreadsheets yowzers Microsoft Excel Worksheet Functions 2 20th Jan 2010 01:51 PM
Linking a multiple spreadsheets to a master spreadsheet ccombs4569@wideopenwest.com Microsoft Excel Discussion 2 12th Oct 2007 03:42 PM
Load data from multiple spreadsheets into one master spreadsheet Scarlet Microsoft Excel Programming 1 6th Jun 2006 06:04 PM
How to extract cells from multiple spreadsheets into one new spreadsheet Guy Microsoft Excel New Users 3 14th Mar 2005 02:14 PM
How do I import multiple spreadsheets into the same spreadsheet? =?Utf-8?B?Q2hpY2FnbyBKb2U=?= Microsoft Excel Misc 1 27th Sep 2004 04:02 AM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 02:21 AM.