I am trying to record the data of the cell( like D2) and add every time it changes. Well cell contains the basic formula and it changes as other data in the column changes. I want to record the each data and add every time.
I am trying to record the data of the cell( like D2) and add every time it changes. Well cell contains the basic formula and it changes as other data in the column changes. I want to record the each data and add every time.
everythijme you change the value in A1 it will be copied to a cell in column b![]()
Private Sub Worksheet_Change(ByVal Target As Range) 'Do nothing if more than one cell is changed or content deleted If Target.Cells.Count > 1 Or IsEmpty(Target) Then Exit Sub If Target.Address = "$A$1" Then If IsNumeric(Target) Then target.copy destination:=Range("B65536").end(xlup).offset(1,0) End If End If End Sub
Not all forums are the same - seek and you shall find
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks