i have written this simple code which i found on using excel macro.
Private Sub Macro3(ByVal Target As Range)
If Not Intersect(Target, Range("A2:A2")) Is Nothing Then
Application.EnableEvents = False
Range("A3:A31").Value = Range("A2:A30").Value
Application.EnableEvents = True
End If
End Sub
but after creating i cannot find the macro nor can i run it through VBA editor.
please help me out. i am using ms office 2010
Edits
what i actually want to implement.
i have a continuously changing value in A1 cell of my sheet. as soon as it changes i want it to be copied to A2 and value of A2 to A3 and so on...
you can also try by implementing the following macro
now should be able to store data column vise at an periodic time interval.