View Single Post
  #4   Report Post  
Posted to microsoft.public.excel.misc
Bill Bill is offline
external usenet poster
 
Posts: 390
Default Is there a step by step procedure on macros?

This is the macro and it is in the this workbook module
Private Sub Worksheet_Change(ByVal Target As Range)
If Target(1, 1).Address = "$C$5" Then
With Worksheets("LogSheet")
.Cells(.Rows.Count, 1).End(xlUp)(2, 1).Value = Target(1, 1).Value
End With
End If
End Sub


"Dave Peterson" wrote:

Go into the VBE and click inside the procedure.
Hit F8 to step through the code.

If this doesn't help, you may want to post the code (like Toppers suggested) and
post more details--where is the code located, how you start the macro.

And make sure you've enabled macros when you opened the workbook.

Bill wrote:

I have a amcro and cannot get it to run, I have come to the conclusion that I
must be doing something basic wrong. Our company tech. support cannot see
anything wrong, so it must be something overlooked.


--

Dave Peterson