For Each ws in Workbook.Worksheets

SBF12345

Well-known Member
Joined
Jul 26, 2014
Messages
614
I am trying to run a For Each loop using the following chunk:

Code:
Set COM = Workbooks("COMM_COMBINED.xls")

Code:
For Each ws In COM.Worksheets    
    AC = ws.Name
    
    Do While COM.Worksheets(AC).Cells(j, 1) <> ""
    
        Set COMVAR = COM.Worksheets(AC).Cells(j, 1)
        
        z = 5
        
        Do While MAIN.Worksheets("M_" & AC).Cells(z, 1) <> ""
        
            Set MAINVAR = MAIN.Worksheets("M_" & AC).Cells(z, 1)
            
            If MAINVAR = COMVAR Then
                
                MAIN.Worksheets("M_" & AC).Range(MAINVAR, MAINVAR.End(xlToRight)).Copy
                COM.Worksheets(AC).Activate
                Cells(j, 1).Select
                Selection.End(xlToRight).Offset(0, 1).Select
                Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks:=False, Transpose:=False
                
                End If
                
                z = z + 1
                
                Loop
        
                j = j + 1
        
    Loop
    
    Next ws

It seems to be executing nicely, but at the Next ws line the code doesn't jump to the next worksheet in the workbook COM. How is it not catching this line and jumping to the next worksheet in the workbook?
 

Excel Facts

Can a formula spear through sheets?
Use =SUM(January:December!E7) to sum E7 on all of the sheets from January through December
I don't know what you mean by "jump to the next worksheet". The ws variable should change values for the worksheets in the order that they appear on your monitor screen. Have you tried stepping through the code using the F8 function key to see if the value changes for the ws variable? Or another way to do it is to insert a message box immediately after the 'For Each ws' statement.

Code:
MsgBox ws.Name

You can then see the name value of the ws variable on each iteration of the loop.
 
Last edited:
Upvote 0
Hello,

I am trying to get a formula that searches within a sales order (column A) and tells me if that sales order contains SECT or not (column C).


SALES ORDERCUSTOMERPLANNER
332456 HOME DEPOTSECT
332456 HOME DEPOTGATE
332550 THE FENCE MAKERPOST
332550 THE FENCE MAKERGATE
332550 THE FENCE MAKERHARDWARE
333980 GIMMICKHARDWARE
335790 PARK FENCESECT
335790 PARK FENCEPOST
336000 HOME DEPOTHARDWARE

<colgroup><col><col><col></colgroup><tbody>
</tbody>


Any help is greatly appreciated

Thanks
Jose Ulloa
 
Upvote 0
Thanks for the response,

In response to your first question I intended for the ws variable to change values from on the screen like you mentioned. It doesn't appear to be doing this. I ran it with F8, though I'll have to do it again with an Add Watch for the ws variable. I'll try the msgbox method too. Thanks

As for the post below, you may want to start a new thread...and maybe reread the forum rules.
 
Upvote 0
@joseulloa22, Jose, I am not a forum monitor, but I believe the posting guidelines indicate that you should start your own thread when the objective is unrelated to topic of the current thread.
 
Upvote 0
Thanks for the response,

In response to your first question I intended for the ws variable to change values from on the screen like you mentioned. It doesn't appear to be doing this. I ran it with F8, though I'll have to do it again with an Add Watch for the ws variable. I'll try the msgbox method too. Thanks

As for the post below, you may want to start a new thread...and maybe reread the forum rules.

Yes, I only took a quick look at it, but I did not see anything that would make it exit the For Each loop prematurely. So, it should be changing the variable values. It will not change the screen display, if that is what you were expecting. So, your problem could be in your Do While loop or your IF statements causing it to bypass any execution.
 
Last edited:
Upvote 0
It seems to be executing nicely, but at the Next ws line the code doesn't jump to the next worksheet in the workbook COM. How is it not catching this line and jumping to the next worksheet in the workbook?

I agree with JLGWhiz's comments. I suspect your code isn't producing the results you expect, and you are jumping to conclusions about what might be happening.

Post #11 here (where you provided more code) may identify part of the problem: https://www.mrexcel.com/forum/excel-questions/1029190-error-2.html

I am guessing that you want to start at row 3 in each worksheet? If so, you'll need j=3 inside the For each ws ... loop
 
Upvote 0

Forum statistics

Threads
1,217,382
Messages
6,136,242
Members
450,000
Latest member
jgp19

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top