Hi Kerrry,
Welcome to the board,
Make a list of your description and Give price in next column. Make a name "rngList" of all your Discription.
I have applied date validation in column 1 and row 75...
Please change accordingly..
Paste this VBA code in sheets code window........
Code:
Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Column = 1 And Target.Row <= 75 Then
Target.Offset(, 1) = Range("rngList").Find(Target.Value).Offset(, 1).Value
End If
End Sub
HTH
--------------------------
Bookmarks