excel crashing when 'macro' icon is hit

ssquirrel

New Member
Joined
Sep 8, 2014
Messages
3
I have a set of macros I run in the course of preparing a weekly report. The first macro is used to clear out unneeded columns from a database dump (I can't control the outfeed and get more columns than I need). I run the same macro on 4 different sets of data, each output from a separate divison of my business. I revised the first macro 2 weeks ago to include the a find+replace. I used the macro (and the set) last week in creating my reports wthout problem.

This week when I open my file from the database and prepare to launch the macro by hitting the 'show macros' icon on the developer tab, excel crashes "Microsoft excel has stopped working...". I've restarted my pc, and repeated steps numerous times with same result.

Any ideas why? I was going to paste the macro in the post but can't get that far without a crash.
 

Excel Facts

Convert text numbers to real numbers
Select a column containing text numbers. Press Alt+D E F to quickly convert text to numbers. Faster than "Convert to Number"
Well you shouldn't need to enable macros to view the code. You can just hit alt+F11 and it will pull up the macro editor. It sounds like you might have a change event or a calculate event that is looping like woah.
 
Upvote 0
Well you shouldn't need to enable macros to view the code. You can just hit alt+F11 and it will pull up the macro editor. It sounds like you might have a change event or a calculate event that is looping like woah.

Sub IMS2SPACEMODEL()
'
' IMS2SPACEMODEL Macro
' take xls or csv, pull relevant columns to clipboard to be pasted into space model
'
' Keyboard Shortcut: Ctrl+i
'
Columns("B:E").Select
Selection.Delete Shift:=xlToLeft
Columns("C:F").Select
Selection.Delete Shift:=xlToLeft
Columns("D:I").Select
Selection.Delete Shift:=xlToLeft
Columns("E:F").Select
Selection.Delete Shift:=xlToLeft
Columns("F:H").Select
Selection.Delete Shift:=xlToLeft
Columns("G:G").Select
Selection.Delete Shift:=xlToLeft
Columns("H:I").Select
Selection.Delete Shift:=xlToLeft
Columns("I:L").Select
Selection.Delete Shift:=xlToLeft
Columns("J:J").Select
Selection.Delete Shift:=xlToLeft
Columns("A:M").Select
Range("M1").Activate
Selection.Copy
End Sub
Sub DEEPSKUCONVERSION()
'
' DEEPSKUCONVERSION Macro
'

'
Columns("D:D").Select
Selection.Copy
Columns("E:E").Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
Application.CutCopyMode = False
Sheets("IMS").Select
ActiveWorkbook.Save
End Sub

This is what ALT+F11 allows me to retrieve.
 
Upvote 0

Forum statistics

Threads
1,214,641
Messages
6,120,685
Members
448,978
Latest member
rrauni

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