Macro stops in middle - jumps to VB design mode

Rominall

New Member
Joined
Feb 20, 2014
Messages
6
here's the macro:

Windows("WB1.xlsm").Activate
Range("A1").Select
Range(Selection, ActiveCell.SpecialCells(xlLastCell)).Select
Range(Selection, Selection.End(xlUp)).Select
Selection.Copy
Workbooks.Open Filename:= _
"WB2.xlsm"
'
ActiveWindow.ScrollWorkbookTabs Position:=xlLast
Sheets.Add After:=Sheets(Sheets.Count)
ActiveSheet.Paste
ActiveSheet.Name = "NEWDATA"
Range("A1").Activate
ActiveWorkbook.Save
Range("A1").Activate
ActiveWindow.Close
Windows("WB1.xlsm").Activate
Sheets("Temp").Select
ActiveWindow.SelectedSheets.Delete

When I run it, it stops on the WB2 open and makes goes into Developer - Design Mode. If I put a breakpoint in it it will run correctly. """
 

Excel Facts

Spell Check in Excel
Press F7 to start spell check in Excel. Be careful, by default, Excel does not check Capitalized Werds (whoops)
Try copying the code to notepad, deleting it from the VBE and pasting it back in. Sometimes invisible breaks get put in.
 
Upvote 0
How are you running the macro? If it's from a keyboard shortcut, and that shortcut includes the Shift key, change the key combination to not include Shift.
 
Upvote 0
Me? ;)
It's an annoying bug.
 
Upvote 0

Forum statistics

Threads
1,215,884
Messages
6,127,567
Members
449,385
Latest member
KMGLarson

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