Removing A Value From A Multivalue Field Without Keeping Blanks



Download: IT Certifications 101
Inside this exclusive essential guide, our independent experts break down which IT certifications are worth your time and effort, and how to get started obtaining them to further your career— including specific certifications that any cloud or desktop pro should seriously consider.
issue, is that we can program the same with a lot less of code, especially if
you have the underlying document and you are using 4.6.1 and higher:
Sub Extract(doc As NotesDocument, ItemName As String, Value_To_Replace)As String
New_Value=Evaluate("@Trim(@Replace("+ItemName+";"""+Value_To_Replace+""";""""))"
,doc)
doc.ReplaceItemValue(ItemName,New_Value)
End Sub
Start the conversation
0 comments