On each Sub form there's a (Remarks) textbox that if user enters in a comment and after update, On a Master Form the (Summary) text box will output & say "See SB1. I need it to only update the one time. If user deletes or adds text each update it will continue to say See that.. section multiple times. Is there a way to limit it to once per After update?
Example:
Sub Form 1, Textbox9 (Remarks) & After Update Output to Master Form Textbox9 (Summary) SEE SB1,
Sub Form 2, Textbox9 (Remarks) & After Update Output to Master Form Textbox9 (Summary) SEE SB2,
This code is placed on each Sub Form's (Remark's) Text box that's Named Textbox 9 After Update...
The Master Form (Summary) Textbox is also Named Textbox9....I know, Not sure why the creator did that.
Example:
Sub Form 1, Textbox9 (Remarks) & After Update Output to Master Form Textbox9 (Summary) SEE SB1,
Sub Form 2, Textbox9 (Remarks) & After Update Output to Master Form Textbox9 (Summary) SEE SB2,
This code is placed on each Sub Form's (Remark's) Text box that's Named Textbox 9 After Update...
The Master Form (Summary) Textbox is also Named Textbox9....I know, Not sure why the creator did that.
VBA Code:
Private Sub Text9_AfterUpdate()
Dim Output As String
Output = Text9
Text9 = Output
Forms![Data Entry Form]![Master Tab Subform]!Text9 = Forms![Data Entry Form]![Master Tab Subform]!Text9 & vbCrL & "SEE SB1, "
End Sub