Hello all,
I have a lotusscript running on a form that if field1 is not in field2(which is on another form) add it. But I am having trouble appending to the multi valued text field(field2). Type mismatch is the error message. I have to use NotesDocument because I have to search based off of the username, so I can’t use the NotesUIDocument with the FieldAppendText function.
Here is the code:
NotesDocument.field2 = NotesDocument.field2 + Chr(10) + Chr(13) + field1
Thanks in Advance