
Originally Posted by
June7
Is this a form/subform arrangement? Is button on main form or subform
If button and code behind the form with the data should simply refer to the fields of the form's RecordSource or to textbox name, like:
Reference to field:
Me!Suggestion
Reference to textboxname:
Me.tbxSuggestion
If button and code are on main form and data is on subform, like:
Reference to field:
Me.subformcontainername!Suggestion
Reference to textboxname:
Me.subformcontainername.Form.tbxSuggestion
If you want to provide db for analysis, follow instructions at bottom of my post.