alternatively if I slowed down a bit and read the question properly, the answer would have been something more like
myShtCnt = Worksheets().Count
myloop = 1
Do Until myloop > myShtCnt
Sheets(myloop).Select
Cells.MergeCells = False
myloop = myloop + 1
Loop
|