PDA

View Full Version : suffix



zcy198236
11-23-2009, 11:50 AM
In excel, if I want to customise particular column/ row of cells, to make it always add the word "corp" after what ever I put in these cells? How to write the code, please?

Bob Phillips
11-23-2009, 12:15 PM
Private Sub Worksheet_Change(ByVal Target As Range)
Const WS_RANGE As String = "H1:H10" '<== change to suit

On Error GoTo ws_exit
Application.EnableEvents = False

If Not Intersect(Target, Me.Range(WS_RANGE)) Is Nothing Then
With Target

If Right$(.Value, 4) <> "crop" Then

.Value = .Value & " crop"
End If
End With
End If

ws_exit:
Application.EnableEvents = True
End Sub


This is worksheet event code, which means that it needs to be
placed in the appropriate worksheet code module, not a standard
code module. To do this, right-click on the sheet tab, select
the View Code option from the menu, and paste the code in.