Private Sub Worksheet_Change(ByVal T As Range)
If T.Column = 3 Then
If T.Row > 25 Then
With Application
.ScreenUpdating = False
T(, 6) = .VLookup(T, [base], 2, 0)
T(, 7) = .VLookup(T, [base], 3, 0)
T(, 8) = .VLookup(T, [base], 4, 0)
.ScreenUpdating = True
End With
End If
End If
End Sub