Macro

N

Nice_But_Dim!

I have a long string of data (about 60,000 data points) which I am trying to
break up into groups of 1024. I have wriiten a macro to do this for me, but
it keeps getting stuck around the 31744th data point.
Does anyone know why it does this and how I can get round it.
Thanks for your help!
 
T

Tom Ogilvy

You probably have a variable or variables dimensioned as Integer. Dimension
it/them as Long. There really is no benefit in using integer over Long.
 
Top