View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
Arran Arran is offline
external usenet poster
 
Posts: 50
Default Macro to delete part of a macro

Hi,

I have create a macro in a wookbook (DB). this macro opens up another
workbook (NF) and copies data from NF.

NF itself has macro's within it. when I open NF through the macro in DB I
want part of the thisworkbook beforeSave macro in NF to be deleted/replaced
is this possible?

code in NF is:

Private Sub Workbook_BeforeSave(ByVal SaveAsUI As Boolean, Cancel As Boolean)
Application.EnableEvents = False
If Range("G5") = "" Or Range("D7") = "" Then
Cancel = True
MsgBox "Please complete all Mandatory Fields"
Else
Run €¯saveme€¯
End If
Application.EnableEvents = True
End Sub

It is the Run "saveme" code that I need to be deleted

Any idea's?