View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.misc
Bill Kuunders Bill Kuunders is offline
external usenet poster
 
Posts: 303
Default Tracking a change

one way
use a worksheet change macro

Private Sub Worksheet_Change(ByVal target As Range)

If target.Address = "$A$1" Then

Range("B65536").End(xlUp).Offset(1, 0) = Range("A1").Value
End If

End Sub

--
Greetings from New Zealand

"IloveExcel" wrote in message
...
Hi all,
I need to be able to change the value of one cell and have the new value
appended to a column.

For example, when I change the value of cell A1 from 0 to 4 the cell B1
will
have the value of 4 and then when I change A1 again from 4 to 10 the cell
B2
will be populated with 10 and so on.

any help will be greatly appreciated.
thanks.