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
Select Case LCase(.Value)
Case "abbey": .Offset(0, 1).Value = 12
Case "manse": .Offset(0, 1).Value = 22
'etc
End Select
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.
--
---
HTH
Bob
(there's no email, no snail mail, but somewhere should be gmail in my addy)
"SuzieinNC" <(E-Mail Removed)> wrote in message
news

5ACBD91-6124-4000-972C-(E-Mail Removed)...
> Kind of hard to explain so I will try to set an example:
>
> Each time I type the word "abbey" into a cell, I would like for the next
> cell to populate with a monetary value I have assigned. Is this
> possible??
> If someone could just give me a little guidance I could figure it out.
>
> Thanks!
>