Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 735
Default Multi Workbook Data Extraction

Seasons Greetings!

I have over 1800 workbooks (all the same format created by another
application using a template) which sit in a common folder on a server. I
now need to trawl through all these extracting specific ranges of data and
storing these in a new single workbook-sheet - one row per source workbook.

I am familiar with opening and copying data from external workbooks and
reading files sequentially in a folder. However is there a way to avoid
opening the remote workbook? Each are over 8Mb in size.

Thank you


--

Regards,
Nigel




  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 11,123
Default Multi Workbook Data Extraction

Hi Nigel

You can try ADO
http://www.rondebruin.nl/ado.htm

I will update the page today for 2007 files and changed the subfolder option

--

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


"Nigel" wrote in message ...
Seasons Greetings!

I have over 1800 workbooks (all the same format created by another
application using a template) which sit in a common folder on a server. I
now need to trawl through all these extracting specific ranges of data and
storing these in a new single workbook-sheet - one row per source workbook.

I am familiar with opening and copying data from external workbooks and
reading files sequentially in a folder. However is there a way to avoid
opening the remote workbook? Each are over 8Mb in size.

Thank you


--

Regards,
Nigel




  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 11,123
Default Multi Workbook Data Extraction

The new page is online now
http://www.rondebruin.nl/ado.htm

--

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


"Ron de Bruin" wrote in message ...
Hi Nigel

You can try ADO
http://www.rondebruin.nl/ado.htm

I will update the page today for 2007 files and changed the subfolder option

--

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


"Nigel" wrote in message ...
Seasons Greetings!

I have over 1800 workbooks (all the same format created by another
application using a template) which sit in a common folder on a server. I
now need to trawl through all these extracting specific ranges of data and
storing these in a new single workbook-sheet - one row per source workbook.

I am familiar with opening and copying data from external workbooks and
reading files sequentially in a folder. However is there a way to avoid
opening the remote workbook? Each are over 8Mb in size.

Thank you


--

Regards,
Nigel




  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 735
Default Multi Workbook Data Extraction

Hi Ron

ADO is a great idea, thanks for the examples. I will give it a try and let
you know.

Seasons Greetings!

--

Regards,
Nigel




"Ron de Bruin" wrote in message
...
The new page is online now
http://www.rondebruin.nl/ado.htm

--

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


"Ron de Bruin" wrote in message
...
Hi Nigel

You can try ADO
http://www.rondebruin.nl/ado.htm

I will update the page today for 2007 files and changed the subfolder
option

--

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


"Nigel" wrote in message
...
Seasons Greetings!

I have over 1800 workbooks (all the same format created by another
application using a template) which sit in a common folder on a server.
I now need to trawl through all these extracting specific ranges of data
and storing these in a new single workbook-sheet - one row per source
workbook.

I am familiar with opening and copying data from external workbooks and
reading files sequentially in a folder. However is there a way to avoid
opening the remote workbook? Each are over 8Mb in size.

Thank you


--

Regards,
Nigel



  #5   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 12
Default Multi Workbook Data Extraction

On 23 Gru, 15:09, "Nigel" wrote:
Hi Ron

ADO is a great idea, thanks for the examples. I will give it a try and let
you know.

Seasons Greetings!

--

Regards,
Nigel


"Ron de Bruin" wrote in .. .

The new page is online now
http://www.rondebruin.nl/ado.htm


--


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


"Ron de Bruin" wrote in message
...
Hi Nigel


You can try ADO
http://www.rondebruin.nl/ado.htm


I will update the page today for 2007 files and changed the subfolder
option


--


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


"Nigel" wrote in message
...
Seasons Greetings!


I have over 1800 workbooks (all the same format created by another
application using a template) which sit in a common folder on a server.
I now need to trawl through all these extracting specific ranges of data
and storing these in a new single workbook-sheet - one row per source
workbook.


I am familiar with opening and copying data from external workbooks and
reading files sequentially in a folder. However is there a way to avoid
opening the remote workbook? Each are over 8Mb in size.


Thank you


--


Regards,
Nigel


Or you could pull data manually ;)


  #6   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 735
Default Multi Workbook Data Extraction

When I next feel suicidal I will consider this option !!!

Cheers :))

--

Regards,
Nigel




"Coder1215" wrote in message
...
On 23 Gru, 15:09, "Nigel" wrote:
Hi Ron

ADO is a great idea, thanks for the examples. I will give it a try and
let
you know.

Seasons Greetings!

--

Regards,
Nigel


"Ron de Bruin" wrote in
.. .

The new page is online now
http://www.rondebruin.nl/ado.htm

--


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


"Ron de Bruin" wrote in message
...
Hi Nigel


You can try ADO
http://www.rondebruin.nl/ado.htm


I will update the page today for 2007 files and changed the subfolder
option


--


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


"Nigel" wrote in message
...
Seasons Greetings!


I have over 1800 workbooks (all the same format created by another
application using a template) which sit in a common folder on a
server.
I now need to trawl through all these extracting specific ranges of
data
and storing these in a new single workbook-sheet - one row per source
workbook.


I am familiar with opening and copying data from external workbooks
and
reading files sequentially in a folder. However is there a way to
avoid
opening the remote workbook? Each are over 8Mb in size.


Thank you


--


Regards,
Nigel


Or you could pull data manually ;)


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
Complex Multi-condition, multi-workbook count Heliocracy Excel Discussion (Misc queries) 0 October 4th 07 08:18 PM
Multi-Spreadsheet text and data extraction taiwansmith Excel Programming 2 July 30th 06 06:13 PM
Search & Extraction of Cells in a Workbook without opening it? Joe HM Excel Programming 2 September 28th 05 05:22 PM
how can I paste multi-line/multi-paragraph data into ONE cell? Theano Excel Discussion (Misc queries) 3 June 7th 05 01:10 PM
data extraction / cleansing a string column in a workbook Keith[_12_] Excel Programming 2 May 3rd 04 08:54 PM


All times are GMT +1. The time now is 03:38 PM.

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

About Us

"It's about Microsoft Excel"