Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am looping through sheets in an Excel 2010 workbook. The second time I come to this line: Set rng = WS.Range(Cells(StartRow, StartCol), Cells(MaxRow, MaxCol)) I get the 1004 error (which could be anything). rng is a range variable. I have moved the sheets around thinking something might be wrong with the second sheet. I have moved the range logic to a separate sub, so that the rng variable is dimmed each time. I have put numbers instead of variables into the cells parameters. I tried doevents just before this line. Nothing works. Any ideas?


Figure it out 2 minutes after posting. Needed to change cells to ws.cells Set rng = WS.Range(WS.Cells(StartRow, StartCol), WS.Cells(MaxRow, MaxCol))

share|improve this question

closed as too localized by Doug Glancy, rkosegi, Mark, ЯegDwight, tombom Sep 21 '12 at 14:38

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.

Browse other questions tagged or ask your own question.