Get our FREE VBA eBook of the 30 most useful Excel VBA macros.

Automate Excel so that you can save time and stop doing the jobs a trained monkey could do.

Claim your free eBook


Loop through every worksheet or every workbook

VBA Code Snippets

Looping through every worksheet or every workbook is a very common action. One which you may be doing on a regular basis.  The code below should set you on the right path.

Loop through every worksheet

Sub LoopThroughWorksheets()

'Create a variable to hold the worksheet and also the output message
Dim Ws As Worksheet
Dim Message As String
'Loop through each worksheet in the Worksheets collection of the active workbook
For Each Ws In ActiveWorkbook.Worksheets

    'Insert the actions you wish to take on every worksheet
    'In this example adding the name of a sheet to a string
    Message = Message & Ws.Name & vbNewLine

Next Ws

'Output the string containing the name of each worksheet
MsgBox Message

End Sub

Loop through every workbook

Sub LoopThroughWorkbooks()

'Create a variable to hold the workbook and also the output message
Dim Wb As Workbook 
Dim Message As String

'Loop through every open workbook in the workbooks collection of the active Excel session 
For Each Wb In Workbooks

    'Insert the actions you wish to take on every workbook 
    'In this example adding the name of a sheet to a string
    Message = Message & Wb.Name & vbNewLine 

Next Wb 

    'Output the string containing the name of each workbook
MsgBox Message 

End Sub

Headshot Round

About the author

Hey, I’m Mark, and I run Excel Off The Grid.

My parents tell me that at the age of 7 I declared I was going to become a qualified accountant. I was either psychic or had no imagination, as that is exactly what happened. However, it wasn't until I was 35 that my journey really began.

In 2015, I started a new job, for which I was regularly working after 10pm. As a result, I rarely saw my children during the week. So, I started searching for the secrets to automating Excel. I discovered that by building a small number of simple tools, I could combine them together in different ways to automate nearly all my regular tasks. This meant I could work less hours (and I got pay raises!). Today, I teach these techniques to other professionals in our training program so they too can spend less time at work (and more time with their children and doing the things they love).


Do you need help adapting this post to your needs?

I'm guessing the examples in this post don't exactly match your situation. We all use Excel differently, so it's impossible to write a post that will meet everybody's needs. By taking the time to understand the techniques and principles in this post (and elsewhere on this site), you should be able to adapt it to your needs.

But, if you're still struggling you should:

  1. Read other blogs, or watch YouTube videos on the same topic. You will benefit much more by discovering your own solutions.
  2. Ask the 'Excel Ninja' in your office. It's amazing what things other people know.
  3. Ask a question in a forum like Mr Excel, or the Microsoft Answers Community. Remember, the people on these forums are generally giving their time for free. So take care to craft your question, make sure it's clear and concise.  List all the things you've tried, and provide screenshots, code segments and example workbooks.
  4. Use Excel Rescue, who are my consultancy partner. They help by providing solutions to smaller Excel problems.

What next?
Don't go yet, there is plenty more to learn on Excel Off The Grid.  Check out the latest posts:

Leave a Reply

Your email address will not be published. Required fields are marked *