Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 8
Default How to Combine Data Regions

Hi all,

I have a worksheet which holds the results of two database queries. I want
to combine the regions programmatically saving the results to a new sheet. I
cannot create a single query to retrieve the combined data.

The initial worksheet looks similar to the following illustration:
Sheet 1:
Region 1:
Header1a Header1b Header1c ... Header1(n)
Row1a Row1b Row1c ... Row1(n)
Row1a Row1b Row1c ... Row1(n)
.... ... ... ... ...
.... ... ... ... ...
Row(N)a Row(N)b Row(N)c ... Row(N)(n)

Region 2:
Header2a Header2b Header2c ... Header2(n)
Row1a Row1b Row1c ... Row1(n)
Row1a Row1b Row1c ... Row1(n)
.... ... ... ... ...
.... ... ... ... ...
Row(N)a Row(N)b Row(N)c ... Row(N)(n)

The regions are separated by one or more blank lines. I'm going to remove
the sorting, grouping, and subtotals being applied to each region. Finally,
I want to grab the data combining it onto a new sheet. The columns and
formatting will alight between the regions. I'm not sure how to pick up the
data.
  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 5,441
Default How to Combine Data Regions

Orlanzo,

How many Headers are in common?
Is there just one key in common?
Are there key values present in one set that aren't present in the other
set?

HTH,
Bernie
MS Excel MVP


"Orlanzo" wrote in message
...
Hi all,

I have a worksheet which holds the results of two database queries. I want
to combine the regions programmatically saving the results to a new sheet.
I
cannot create a single query to retrieve the combined data.

The initial worksheet looks similar to the following illustration:
Sheet 1:
Region 1:
Header1a Header1b Header1c ... Header1(n)
Row1a Row1b Row1c ... Row1(n)
Row1a Row1b Row1c ... Row1(n)
... ... ... ... ...
... ... ... ... ...
Row(N)a Row(N)b Row(N)c ... Row(N)(n)

Region 2:
Header2a Header2b Header2c ... Header2(n)
Row1a Row1b Row1c ... Row1(n)
Row1a Row1b Row1c ... Row1(n)
... ... ... ... ...
... ... ... ... ...
Row(N)a Row(N)b Row(N)c ... Row(N)(n)

The regions are separated by one or more blank lines. I'm going to remove
the sorting, grouping, and subtotals being applied to each region.
Finally,
I want to grab the data combining it onto a new sheet. The columns and
formatting will alight between the regions. I'm not sure how to pick up
the
data.



  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 8
Default How to Combine Data Regions

Hello Bernie,

The headers in both sections aer identical. The only difference between the
two sets is the source of the data. Of course, the numbers in each set will
be different. I simply need to union them together.

I'm automating excel from another application (Access) and need to combine
the sets before importing the information into a database application.

Thanks for your help!

Orlanzo

"Bernie Deitrick" wrote:

Orlanzo,

How many Headers are in common?
Is there just one key in common?
Are there key values present in one set that aren't present in the other
set?

HTH,
Bernie
MS Excel MVP


"Orlanzo" wrote in message
...
Hi all,

I have a worksheet which holds the results of two database queries. I want
to combine the regions programmatically saving the results to a new sheet.
I
cannot create a single query to retrieve the combined data.

The initial worksheet looks similar to the following illustration:
Sheet 1:
Region 1:
Header1a Header1b Header1c ... Header1(n)
Row1a Row1b Row1c ... Row1(n)
Row1a Row1b Row1c ... Row1(n)
... ... ... ... ...
... ... ... ... ...
Row(N)a Row(N)b Row(N)c ... Row(N)(n)

Region 2:
Header2a Header2b Header2c ... Header2(n)
Row1a Row1b Row1c ... Row1(n)
Row1a Row1b Row1c ... Row1(n)
... ... ... ... ...
... ... ... ... ...
Row(N)a Row(N)b Row(N)c ... Row(N)(n)

The regions are separated by one or more blank lines. I'm going to remove
the sorting, grouping, and subtotals being applied to each region.
Finally,
I want to grab the data combining it onto a new sheet. The columns and
formatting will alight between the regions. I'm not sure how to pick up
the
data.




  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 8
Default How to Combine Data Regions

For completeness....

What I finally did was to remove all subtotals and grouping. Next, I wrote
the necessary sheets to a csv file and processed the file as required prior
to using the data as required.

Orlanzo

"Orlanzo" wrote:

Hello Bernie,

The headers in both sections aer identical. The only difference between the
two sets is the source of the data. Of course, the numbers in each set will
be different. I simply need to union them together.

I'm automating excel from another application (Access) and need to combine
the sets before importing the information into a database application.

Thanks for your help!

Orlanzo

"Bernie Deitrick" wrote:

Orlanzo,

How many Headers are in common?
Is there just one key in common?
Are there key values present in one set that aren't present in the other
set?

HTH,
Bernie
MS Excel MVP


"Orlanzo" wrote in message
...
Hi all,

I have a worksheet which holds the results of two database queries. I want
to combine the regions programmatically saving the results to a new sheet.
I
cannot create a single query to retrieve the combined data.

The initial worksheet looks similar to the following illustration:
Sheet 1:
Region 1:
Header1a Header1b Header1c ... Header1(n)
Row1a Row1b Row1c ... Row1(n)
Row1a Row1b Row1c ... Row1(n)
... ... ... ... ...
... ... ... ... ...
Row(N)a Row(N)b Row(N)c ... Row(N)(n)

Region 2:
Header2a Header2b Header2c ... Header2(n)
Row1a Row1b Row1c ... Row1(n)
Row1a Row1b Row1c ... Row1(n)
... ... ... ... ...
... ... ... ... ...
Row(N)a Row(N)b Row(N)c ... Row(N)(n)

The regions are separated by one or more blank lines. I'm going to remove
the sorting, grouping, and subtotals being applied to each region.
Finally,
I want to grab the data combining it onto a new sheet. The columns and
formatting will alight between the regions. I'm not sure how to pick up
the
data.




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
Regions of Constant Slope Lex Excel Discussion (Misc queries) 1 June 2nd 10 08:32 PM
Area chart with multiple regions Steven Charts and Charting in Excel 1 November 4th 09 08:08 PM
How do I draw a quadrant with coloured regions in Excel? Sarabjit Excel Discussion (Misc queries) 3 June 29th 07 01:18 PM
Defining Regions with Names Elise148 Excel Discussion (Misc queries) 3 June 13th 07 02:19 PM
FILTER PARTNUMBER Where it match all 3 Regions Juan Excel Programming 1 August 15th 05 11:10 PM


All times are GMT +1. The time now is 09:51 PM.

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"