A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
Hi,
[make a copy before..]
you may try this approach
replace the above change event
with
double click event
(for update, double click in a cell)
=====================
Private Sub Worksheet_BeforeDoubleClick(ByVal Target As Range, Cancel As Boolean)
Dim rng As Range
Application.ScreenUpdating = False
Application.EnableEvents = False
For Each rng In Range("B:B").SpecialCells(xlCellTypeConstants)
If rng.Value Like "TE*" Then
rng.Offset(0, 13).Value = "///KG"
Else
rng.Offset(0, 13).Value = ""
End If
Next rng
Application.EnableEvents = True
Application.ScreenUpdating = True
Target.Offset(, 1).Select
End Sub