M
me
In order to prevent users from editing saved comments, I
have an Add Comments text box that appends data to the
Comments field using:
Me!txtComments = Me!txtComments & "," & Me!NewComments
The only problem is I don't want the "," added if it's the
first Comment entered. Switching the placement to after
NewComments doesn't help either if it's the only Comment.
How can I add the comma only if it's an addition to
existing data? Thanks for the help.
have an Add Comments text box that appends data to the
Comments field using:
Me!txtComments = Me!txtComments & "," & Me!NewComments
The only problem is I don't want the "," added if it's the
first Comment entered. Switching the placement to after
NewComments doesn't help either if it's the only Comment.
How can I add the comma only if it's an addition to
existing data? Thanks for the help.