For Each ws in ActiveWorkbook.Worksheets loop trouble

SBF12345

Well-known Member
Joined
Jul 26, 2014
Messages
614
Greetings,

I have the macro below giving trouble. The body of the macro will run, but does not want to seem to perform the task on a new sheet. It seems to be performing the same task on the same sheet (once for every sheet in the workbook)

Code:
Dim ws As Worksheet
For Each ws In ActiveWorkbook.Worksheets

Range.("H1").Select
ActiveCell.value = "VR"
Range.("I1").Select
ActiveCell.value = "Average"

Nest ws

Any ideas why the loop isn't running the code for each worksheet in the workbook?
 

Excel Facts

What did Pito Salas invent?
Pito Salas, working for Lotus, popularized what would become to be pivot tables. It was released as Lotus Improv in 1989.
You need to qualify your range references, for example...

Code:
ws.Range("H1").Select

However, there's no need to select the cell before entering a value. Try the following...

Code:
Dim ws As Worksheet

For Each ws In ActiveWorkbook.Worksheets
    With ws
        .Range("H1").Value = "VR"
        .Range("I1").Value = "Average"
    End With
Next ws

Hope this helps!
 
Last edited:
Upvote 0
Great, just needed to qualify the range references, now its running through each sheet.

Thanks!
 
Upvote 0
However, there's no need to select the cell before entering a value. Try the following...
Code:
Dim ws As Worksheet

For Each ws In ActiveWorkbook.Worksheets
    With ws
        .Range("H1").Value = "VR"
        .Range("I1").Value = "Average"
    End With
Next ws

Hope this helps!

Just to follow up... there is no need to loop through all of the sheets individually either. These two lines of code will put "VR" in cell H1 and "Average" in cell I1 on every sheet in the active workbook no matter what sheet is currently active.
Code:
Range("H1:I1") = Split("VR Average")
Sheets.FillAcrossSheets Range("H1:I1")
 
Last edited:
Upvote 0

Forum statistics

Threads
1,214,645
Messages
6,120,711
Members
448,984
Latest member
foxpro

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