Why does MS Excel VBA code work fine if I manually select (am looking at) the affected sheet--but not if any other sheet has the focus?

RafFiniert

New Member
Joined
Mar 18, 2025
Messages
7
Office Version
  1. 2013
Platform
  1. Windows
With Worksheets("MapLookup_RO")

For c1 = 1 To c1end
Range("F4:F4").Copy Range("F" & Rows.Count).End(xlUp).Offset(1, 0)
Next c1

Application.Wait (Now + TimeValue("0:00:02"))
ActiveWorkbook.Save

End With


If I manually click on the MapLookup_RO worksheet, I can watch the code work as expected. However, if I manually click on any other worksheet and then run the code, it does not execute the copy command.

For modularity's sake, the code above is in a subroutine called from another subroutine. (The code is not "behind" the worksheet.)
 
Welcome to the Board!

If your ranges do not have sheet qualifiers, they will always default to the Active Sheet at the point when it hits the code.

It looks like you are trying to use "With" to specify the sheet, but that only works if you put a period in front of all the range references within that With clause, to show that range belongs to the sheet named in the With line, and not to the Active Sheet, i.e.
VBA Code:
With Worksheets("MapLookup_RO")

    For c1 = 1 To c1end
        .Range("F4:F4").Copy .Range("F" & .Rows.Count).End(xlUp).Offset(1, 0)
    Next c1

    Application.Wait (Now + TimeValue("0:00:02"))
    ActiveWorkbook.Save

End With
 
Upvote 0
Solution
Welcome to the MrExcel Message Board!

Cross-posting (posting the same question in more than one forum) is not against our rules, but the method of doing so is covered by #13 of the Forum Rules.

Be sure to follow & read the link at the end of the rule too!

Cross posted at:

There is no need to repeat the link(s) provided above but if you have posted the question at other places, please provide links to those as well.

If you do cross-post in the future and also provide links, then there shouldn’t be a problem.
 
Upvote 0

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