Hi Scott,
I took a look at the workbook. I can see why your are getting the error. The Price field is getting checked to make sure it only contains numerical characters with the snippet of code below:
Private Sub txtPrice_Change()
'if not blank, check value to be sure it is numeric data - can't add or subtract from text!
If txtPrice.Text <> "" Then
If Not IsNumeric(txtPrice.Text) Then
MsgBox ("Numeric values only!")
txtPrice.Text = ""
End If
End If
End Sub
I removed this section altogether and it now lets you enter anything you want to in the field. Try the attached.
If this was the solution you were looking for and your workbook functions the way you need it to, please mark this thread as solved using the Thread Tools menu above your first post.
Bookmarks