adding a macro

JWARD

Board Regular
Joined
Aug 6, 2004
Messages
137
i have a macro that takes a text file and layes out an invoice summary. in that new file i want the following macro

Sub Delete_Memo_Lines()
Dim NoRows As Long
Dim I As Long
Dim rng As Range

Application.ScreenUpdating = False

NoRows = Range("A65536").End(xlUp).Row

For I = NoRows To 1 Step -1

Set rng = Range("D" & I)

If UCase(rng.Value) = "M" Then
rng.EntireRow.Delete
End If

Next I

Application.ScreenUpdating = True

End Sub

is there a way to add this code to the original macro, so when it create's the new file it automatically inserts this macro into it?
 

Excel Facts

Repeat Last Command
Pressing F4 adds dollar signs when editing a formula. When not editing, F4 repeats last command.

Forum statistics

Threads
1,215,062
Messages
6,122,923
Members
449,094
Latest member
teemeren

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