Is there a maximum size of the array when moving data as this:
ActiveSheet.Range(Astr).Value = Application.WorksheetFunction.Transpose(TemPvalues)
The array is declared like this
Dim TemPvalues() as string
ReDim TemPvalues(ColLast - ColFirst + 1, NumTot)
where
ColLast - ColFirst + 1= 700
NumTot=15000
Astr contains 700 columns and 15000 Rows
FYI - I am reading the data from other file types - so importing data into Excel
ActiveSheet.Range(Astr).Value = Application.WorksheetFunction.Transpose(TemPvalues)
The array is declared like this
Dim TemPvalues() as string
ReDim TemPvalues(ColLast - ColFirst + 1, NumTot)
where
ColLast - ColFirst + 1= 700
NumTot=15000
Astr contains 700 columns and 15000 Rows
FYI - I am reading the data from other file types - so importing data into Excel