Home |
Search |
Today's Posts |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]() Hi Tom, Yes I think my problem lies elsewhere as I just tried running my code below without alterations on a different workbook and it worked fine. When the code crashed on the other workbook I had two Dictionary objects in memory containing 270,000 items, I'm going to experiment with clearing these, Cheers Dave Redim ResultsArray(Output.Rows.Count,2) Do While i < OutputRange.Rows.Count i = i +1 ResultsArray(i,2) = DictKeys(i-1) ResultsArray(i,1) = DictItems(i-1) Loop OuputRange.Values = MyArray "Tom Ogilvy" wrote in message ... Sub DumpArray() Dim myArray(1 To 65536, 1 To 2) As Long For i = 1 To 65536 For j = 1 To 2 myArray(i, j) = Fix(Rnd() * 10000 + 1) Next Next Range("A1:B65536").Value = myArray End Sub worked fine for me, xl2000, SR1, Win 2K Regards, Tom Ogilvy "Dave" wrote in message . au... I've got a VBA array that is 65536 rows by 2 columns (I've truncated it to fit into two columns) that I'm trying to dump to the A and B columns of a spreadsheet. I'm getting a Runtime 1004 error a few seconds after the line of code tries to execute the dump Presumably I'm trying to dump too much data, if so how do I dump the array in smaller chunks? Cheers Dave |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
does an array contain contents of cell | New Users to Excel | |||
#N/A if cell contents not part of an array | Excel Discussion (Misc queries) | |||
Compare row contents w/Sumproduct or Array formula? | Excel Worksheet Functions | |||
How do I concatenate the contents of an array in Excel? | Excel Worksheet Functions | |||
Randomize the order of the contents of an array | Excel Programming |