ضع هذا الكود في حدث الورقة
ثم جرب كتابة اي كلمة في خلايا العمود C وسيتم اضافة القيمة السابقة الى ما قمت بادخاله
Dim OldValue
Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Count > 1 Then Exit Sub
With Application
.ScreenUpdating = False
.EnableEvents = False
End With
If Not Intersect(Target, [C5:C23]) Is Nothing Then
Target = Target & " " & OldValue
End If
OldValue = vbNullString
With Application
.ScreenUpdating = True
.EnableEvents = True
End With
End Sub
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
OldValue = Target
End Sub