Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Ant
 
Posts: n/a
Default Condensing a large data dump

I have a large SAP data dump (approx 17,000 rows each month) which I would
like to condense into a form where I can use a SUMIF function to pick up
various data. nb. the reason I need to condense the initial data dump is that
it becomes way too large to manage and stalls my machine. Currently I can do
it by creating a pivot table which I then copy and paste as values then copy
down each section to the next one to form a full range of data that a SUMIF
can recognise. This usually ends up around 300 rows. Is there some way I can
either run a macro to fill out the sections of the pivot table or is there
something more advanced technique that can create the condensed version?
  #2   Report Post  
Tom Ogilvy
 
Posts: n/a
Default

It would be difficult to imagine what role a SUMIF would play if you have a
pivot table. The pivot table should provide most of the summary
information.

In any event

select your row label area (the rectangular area that contains both the
cells you want to file in and the cells that would determine what value they
would contain) and run a macro like:

Sub AB()
Dim rng as Range
set rng = selection.Specialcells(xlBlanks)
rng.Formula = "=" & rng(1).offset(-1,0).Address(0,0)
selection.Formulas = selection.Values
End Sub

--
Regards,
Tom Ogilvy


"Ant" wrote in message
...
I have a large SAP data dump (approx 17,000 rows each month) which I would
like to condense into a form where I can use a SUMIF function to pick up
various data. nb. the reason I need to condense the initial data dump is

that
it becomes way too large to manage and stalls my machine. Currently I can

do
it by creating a pivot table which I then copy and paste as values then

copy
down each section to the next one to form a full range of data that a

SUMIF
can recognise. This usually ends up around 300 rows. Is there some way I

can
either run a macro to fill out the sections of the pivot table or is there
something more advanced technique that can create the condensed version?



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
Printing data validation scenarios SJC Excel Worksheet Functions 14 July 24th 05 12:43 AM
large non contiguous data set bhofsetz Charts and Charting in Excel 0 May 25th 05 05:30 PM
How to sort/update large excel db [email protected] Excel Discussion (Misc queries) 0 February 2nd 05 12:43 AM
Bin and sort a large list of data bsears Excel Discussion (Misc queries) 4 January 25th 05 08:58 PM
Help with large amounts of data and formulas Aimoore Excel Worksheet Functions 2 November 19th 04 10:47 PM


All times are GMT +1. The time now is 02:12 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"