Can you share the macro? whenever I see an error involving something "around" 33,000 I immediately look to integer variables. do you have a line/loop counter? varible perhaps? something like: Dim rCount or Dim rCount as integer ?? integers are in the range -32768 to 32768 LONG integers: Dim rCount as Long are in the range -2,147,483,647 to 2,147,483,647 if you do not declare the data type (either by not including the data type in a Dim statement or not declaring them at ALL (gasp!) ) then VBA sets them as a Variant data type. I've had Variants act oddly and seem to exceed the 32768 limit., but inconsistently. But then, none of this makes any difference if you're not using a counter... again.. can you share your code?
Paul ----------------------------------------- “Do all the good you can, By all the means you can, In all the ways you can, In all the places you can, At all the times you can, To all the people you can, As long as ever you can.” - John Wesley ----------------------------------------- From: Bill Q <ronsmith...@gmail.com> >To: excel-macros@googlegroups.com >Sent: Friday, May 30, 2014 5:27 PM >Subject: $$Excel-Macros$$ Over 33,554 rows problem > > > >Hi, > > >I am using Excel 2010. I have a macro web query that downloads various >information. It works fine. No issue there. The only issue that I have is that >it will stop if it encounters more than 33 or 34 thousand rows of information. >I have unchecked the box in "advanced options" that will not alert me if the >number of cells is over 33,554. I thought that would do the trick - but no >success. > > >Any suggestions ? > > >Thanks. > > > -- >Are you =EXP(E:RT) or =NOT(EXP(E:RT)) in Excel? And do you wanna be? It’s >=TIME(2,DO:IT,N:OW) ! Join official Facebook page of this forum @ >https://www.facebook.com/discussexcel > >FORUM RULES > >1) Use concise, accurate thread titles. Poor thread titles, like Please Help, >Urgent, Need Help, Formula Problem, Code Problem, and Need Advice will not get >quick attention or may not be answered. >2) Don't post a question in the thread of another member. >3) Don't post questions regarding breaking or bypassing any security measure. >4) Acknowledge the responses you receive, good or bad. >5) Jobs posting is not allowed. >6) Sharing copyrighted material and their links is not allowed. > >NOTE : Don't ever post confidential data in a workbook. Forum owners and >members are not responsible for any loss. >--- >You received this message because you are subscribed to the Google Groups "MS >EXCEL AND VBA MACROS" group. >To unsubscribe from this group and stop receiving emails from it, send an >email to excel-macros+unsubscr...@googlegroups.com. >To post to this group, send email to excel-macros@googlegroups.com. >Visit this group at http://groups.google.com/group/excel-macros. >For more options, visit https://groups.google.com/d/optout. > > > -- Are you =EXP(E:RT) or =NOT(EXP(E:RT)) in Excel? And do you wanna be? It’s =TIME(2,DO:IT,N:OW) ! Join official Facebook page of this forum @ https://www.facebook.com/discussexcel FORUM RULES 1) Use concise, accurate thread titles. Poor thread titles, like Please Help, Urgent, Need Help, Formula Problem, Code Problem, and Need Advice will not get quick attention or may not be answered. 2) Don't post a question in the thread of another member. 3) Don't post questions regarding breaking or bypassing any security measure. 4) Acknowledge the responses you receive, good or bad. 5) Jobs posting is not allowed. 6) Sharing copyrighted material and their links is not allowed. NOTE : Don't ever post confidential data in a workbook. Forum owners and members are not responsible for any loss. --- You received this message because you are subscribed to the Google Groups "MS EXCEL AND VBA MACROS" group. To unsubscribe from this group and stop receiving emails from it, send an email to excel-macros+unsubscr...@googlegroups.com. To post to this group, send email to excel-macros@googlegroups.com. Visit this group at http://groups.google.com/group/excel-macros. For more options, visit https://groups.google.com/d/optout.