Samadhan Gaikwad
Member
I have many interconnected macros. I would like to show the macro name (if possible theis sequence no.) while running macros.
Code:
Sub FeatureNameandTimestamp1()
Application.ScreenUpdating = False
Columns("C:C").Select
ActiveWindow.SmallScroll Down:=-24
Selection.Replace What:="Parts", Replacement:="", LookAt:=xlPart, _
SearchOrder:=xlByRows, MatchCase:=False, SearchFormat:=False, _
ReplaceFormat:=False
Selection.Replace What:="Part definitely*", Replacement:="", LookAt:= _
xlPart, SearchOrder:=xlByRows, MatchCase:=False, SearchFormat:=False, _
ReplaceFormat:=False
Selection.Replace What:="*name=", Replacement:="", LookAt:=xlPart, _
SearchOrder:=xlByRows, MatchCase:=False, SearchFormat:=False, _
ReplaceFormat:=False
Delete_Empty_Rows_inC ' Sub macro1
SimpleColoringMechanism1 ' Sub macro2
SimpleColoringMechanism2 ' Sub macro3
InPartAddnew ' Sub macro4
FeatureNameandTimestamp2 ' Sub macro5
FeatureNameandTimestamp3 ' Sub macro6
VBATrimFinal1 ' Sub macro7
VBATrimFinal2 ' Sub macro8
Application.ScreenUpdating = True
End Sub