View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Chip Pearson Chip Pearson is offline
external usenet poster
 
Posts: 7,247
Default delete macro with code

See www.cpearson.com/excel/vbe.htm for details and example code.


--
Cordially,
Chip Pearson
Microsoft MVP - Excel
Pearson Software Consulting, LLC
www.cpearson.com




"FSt1" wrote in message
...
how do you delete a macro with code.
i have a file(OpenWO) with code to high like row when you
click on them or arrow down/up.
Private Sub Worksheet_SelectionChange(ByVal Target As
Range)
Cells.Interior.ColorIndex = xlColorIndexNone
Target.EntireRow.Interior.ColorIndex = 36
End Sub
but at the end of each month, i run another macro that
colors up the data with 9 different colors depending of
conditions then save the file off with a different name
as a monthly record.
i have to delete the above macro before runing the EOM
macro or risk distroying all of the other colors.
I would like to delete the above macro with code when i
run the EOM macro.
any one know how to do this??
thanks in advance.