I have an Excel form with a textbox, 2 checkboxs (One Yes, one No) and a submit button.

When a user uses the form and clicks the Yes button and submit I want a statement added to my Sub Macro1().

This is what's in the Macro
VB Code:
  1. For Each MyCell2 In Sheet1.Columns("A").Cells
  2.                 With MyCell2
  3.                     If .Value = "" Then Exit For
  4.                     If .Value = 574 _
  5.                         [COLOR=Red]Or .Value = 555 _[/COLOR]
  6.                         Or .Value = 510 Then
  7.                         .Offset(0, 12).Value = .Offset(0, 8).Value * 1.1
  8.                     End If
  9.                     End With
  10.                 Next MyCell2

This is the statement I want added beneath the section in red:
Or . Value = "WHATS IN THE TEXTBOX" _

Is this possible? I have a user that doesn't know any code and trying to make it easy for them to add more values to the If statement once they encounter ones that need to be added.. Thanks!