converting array to Range using function.transpose - maximum size

Rasm

Well-known Member
Joined
Feb 9, 2011
Messages
505
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
 

Excel Facts

Move date out one month or year
Use =EDATE(A2,1) for one month later. Use EDATE(A2,12) for one year later.
The cells are blank - I tried with fewer records - like 6 samples by 640 datapoints per sample - that works. When I do the big array - I dont even get an error - just balnk cells. Could it be that the array size is limited to 2^16 or 65536 elements?
 
Upvote 0
SHG - It was my mistake - I have different device platform as my datasource - it was a problem with a specific device - It does covert the large arrays. Sorry to put you on a goose chase.
 
Last edited:
Upvote 0

Forum statistics

Threads
1,224,600
Messages
6,179,833
Members
452,947
Latest member
Gerry_F

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top