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))