I can't always wrap my brain around how to effectively use Arrays. Here is my issue
I used VBA to pull a large amount of data into two tabs of a spreadsheet. Now I need to summarize that data and I'm haivng an issue. I can do it with formulas using Sumprocut but becuase the sheets have data in 25000 rows and 11 columns when I add the Summation forumlas Excel slows to a crawl.
and if I have those formulas in place on the summary sheet the Macro to pull in the data runs at 1 line every couple seconds.
So I'm trying to create a macro to pull the values into the main sheet
On the Summary Sheet I have SKUs in Column A (90 or so of them) These are not simple numbers (format examples would b 10-1001, and non sequential)
These start in row 9 and go to N (SKUs are added and removed)
In row 8 I have a header row and in Rows B - K I have locations (Loc A, Loc B, Loc C, etc)
WHat I need to do is search down the Master database tab and for each row that item has a SKU (in column B) and Location (in Column E)
I want to fill in the Grid in my Summary tab, but I can't quite figure out how to load my Array in one pass down the database So I can spit it back out by SKU by Location on the Summary tab. i Can't work how to work out what array dimension to increment when I evaluate the line.
I used VBA to pull a large amount of data into two tabs of a spreadsheet. Now I need to summarize that data and I'm haivng an issue. I can do it with formulas using Sumprocut but becuase the sheets have data in 25000 rows and 11 columns when I add the Summation forumlas Excel slows to a crawl.
and if I have those formulas in place on the summary sheet the Macro to pull in the data runs at 1 line every couple seconds.
So I'm trying to create a macro to pull the values into the main sheet
On the Summary Sheet I have SKUs in Column A (90 or so of them) These are not simple numbers (format examples would b 10-1001, and non sequential)
These start in row 9 and go to N (SKUs are added and removed)
In row 8 I have a header row and in Rows B - K I have locations (Loc A, Loc B, Loc C, etc)
WHat I need to do is search down the Master database tab and for each row that item has a SKU (in column B) and Location (in Column E)
I want to fill in the Grid in my Summary tab, but I can't quite figure out how to load my Array in one pass down the database So I can spit it back out by SKU by Location on the Summary tab. i Can't work how to work out what array dimension to increment when I evaluate the line.