Hi ALBF. Place the following code into the code module for worksheet "Enter Value" (not into a regular module).
Private Sub Worksheet_Change(ByVal Target As Range)
Application.ScreenUpdating = False
If Intersect(Target, Range("D2")) Is Nothing Then Exit Sub
Dim bottomA As Integer
bottomA = Sheets("Totals").Range("A" & Rows.Count).End(xlUp).Row
Dim x As Integer
For x = bottomA To 2 Step -1
If Sheets("Totals").Cells(x, 1) = Target And Sheets("Enter Value").Range("B9") > 0 Then
Sheets("Totals").Cells(x, 2) = Sheets("Enter Value").Range("B9")
End If
Next x
Application.ScreenUpdating = True
End Sub
Bookmarks