Hello,
I don't know how to use a macro. I am more on a formula type of guy. Can you please help me? I have a macro in place in my file but I need it to run automatically when a data is encoded or paste in a certain Cell. I have made the macro using the record button. For it to work is for me to manually run it.
Sub moving()
'
' moving Macro
'
'
Range("A4:D4").Select
Application.CutCopyMode = False
Selection.Copy
Range("A8").Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
Range("Table1").Select
Application.CutCopyMode = False
Selection.Copy
Range("A9").Select
ActiveSheet.Paste
Range("A8:D8").Select
Selection.ClearContents
Range("B4:D4").Select
Selection.ClearContents
End Sub
I really would appreciate your help. Pardon my English.
Thanks,
Kirby
I don't know how to use a macro. I am more on a formula type of guy. Can you please help me? I have a macro in place in my file but I need it to run automatically when a data is encoded or paste in a certain Cell. I have made the macro using the record button. For it to work is for me to manually run it.
Sub moving()
'
' moving Macro
'
'
Range("A4:D4").Select
Application.CutCopyMode = False
Selection.Copy
Range("A8").Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
Range("Table1").Select
Application.CutCopyMode = False
Selection.Copy
Range("A9").Select
ActiveSheet.Paste
Range("A8:D8").Select
Selection.ClearContents
Range("B4:D4").Select
Selection.ClearContents
End Sub
I really would appreciate your help. Pardon my English.
Thanks,
Kirby
Last edited: